我是payPal的新手。我想在我的网站上使用简单的PayNow按钮。问题是,我希望我的网络用户输入他们想要在我的网站上支付的任何金额,并在点击付费按钮时将其转移到payPal。
此选项似乎不适用于任何按钮类型。它们需要预设金额或在PP网站上输入金额。我唯一的选择是学习API吗?
谢谢,迈克
答案 0 :(得分:0)
这可能是您所需要的:
<form name="input" target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="add" value="1">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="YOUR BUSINESS NAME">
<input type="hidden" name="item_name" value="ITEM NAME">
<input type="hidden" name="item_number" value="ITEM ID NUMBER">
Other amount: €<input type="text" maxlength="200" style="width:50px;" name="amount" value="5.00"> EUR<br />
<input type="hidden" name="currency_code" value="EUR">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynow_SM.gif" border="0" alt="PayPal - The safer, easier way to pay online!">
</form>
将变量business
的值更改为接收方电子邮件,即:
<input type="hidden" name="business" value="receiver@email.com">
您可能需要阅读HTML Variables for PayPal Payments Standard - PayPal Developer