我想用paypal付款,用户输入动态价格

时间:2013-05-02 10:31:29

标签: wordpress dynamic paypal payment rate

我希望以paypal付款,动态价格输入wordpress中的文本框。任何人都可以帮助我?根据用户选择和价格率列表,总价格将会发生变化并由user.user将在文本框中输入该金额,这将在paypal中支付。如何做到这一点?我做了研究。

1 个答案:

答案 0 :(得分:1)

您可以使用类似于以下内容的代码,其中您有一个文本框供买方输入金额。然后他们点击按钮进行付款,他们将被重定向到具有该金额的PayPal。

<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<!-- Identify your business so that you can collect the payments. -->
<input type="hidden" name="business" value="my_site@my_site.com">
<!-- Specify a Buy Now button. -->
<input type="hidden" name="cmd" value="_xclick">
<!-- Specify details about the item that buyers will purchase. -->
<input type="hidden" name="item_name" value="Hot Sauce-12 oz. Bottle">
<input type="hidden" name="currency_code" value="USD">
<input type="text" name="amount" maxlength="60">
<br />
<!-- Display the payment button. -->
<input type="image" name="submit" border="0" src="https://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" alt="PayPal - The safer, easier way to pay online">
<img alt="" border="0" width="1" height="1" src="https://www.paypal.com/en_US/i/scr/pixel.gif" >
</form>