将现有价格发送至PayPal

时间:2014-05-04 22:53:04

标签: php paypal

目前我有PayPal正在我的网站上预订场地等。我有通过PayPal支付的存款(这是一定金额),它运作良好。

支付押金后,未结清金额(仍需支付的金额)将保存到数据库中。

我想做的是当客户想要全额支付未付金额时,将我的PayPal按钮的价格设置为此未付金额。

然而,我环顾四周,找不到任何与我的描述完全匹配的东西。我甚至没有尝试过,因为我不知道从哪里开始。

1 个答案:

答案 0 :(得分:0)

您可以检索已保存的金额(存储在数据库中)并将其传递给PayPal按钮代码。

<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="item_name" value="Test">
<input type="hidden" name="business" value="YOUR_PAYPAL_EMAIL">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="amount" value="STORED_DATABASE_AMOUNT">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>