Paypal 贝宝金额计算和折扣:(

Paypal 贝宝金额计算和折扣:(,paypal,paypal-adaptive-payments,Paypal,Paypal Adaptive Payments,我正在尝试创建一个paypal表单,该表单将添加2个金额框,如果在特定日期购买,将减去总金额的5美元。我已经尝试了几天,但没有任何进展。下面是我的代码;非常感谢所有帮助:) 字符名 天使捐赠 您还没有给出计算您想要实现的目标的代码。所有这些都必须使用服务器端语言(如PHP或您正在使用的其他语言)进行计算,然后将结果变量存储到HTML格式的金额输入中。计算部分不能是Paypal HTML表单的一部分,因此请将计算与Paypal HTML表单分开 <form action="https://

我正在尝试创建一个paypal表单,该表单将添加2个金额框,如果在特定日期购买,将减去总金额的5美元。我已经尝试了几天,但没有任何进展。下面是我的代码;非常感谢所有帮助:)


字符名
天使捐赠

您还没有给出计算您想要实现的目标的代码。所有这些都必须使用服务器端语言(如PHP或您正在使用的其他语言)进行计算,然后将结果变量存储到HTML格式的金额输入中。计算部分不能是Paypal HTML表单的一部分,因此请将计算与Paypal HTML表单分开

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="ZNRGUCQ5GN4HU">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="item_name" value="Gaslight Registration">
<input type="hidden" name="amount" value="40.00">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="button_subtype" value="services">
<input type="hidden" name="no_note" value="0">
<input type="hidden" name="cn" value="Is your Angel donation assigned? to who?">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="rm" value="1">
<input type="hidden" name="return" value="http://gaslight.endogaming.net">
<input type="hidden" name="cancel_return" value="http://gaslight.endogaming.net">
<input type="hidden" name="bn" value="PP-BuyNowBF:btn_paynow_LG.gif:NonHosted">
<table>
<tr><td><input type="hidden" name="on0" value="Character Name">Character Name</td></tr><tr><td><input type="text" name="on0" maxlength="200"></td></tr>
<tr><td>Angel Donation</td></tr><tr><td><input type="text" name="amount" maxlength="60"></td></tr>
</table>
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_paynow_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>