我有一个displaycart.php
页面,它显示了我在购物车中的所有项目,每个项目都有一个ItemUnitPrice
显示项目单价的字段。
如果我说购物车中有 6 件商品,那么我想将总ItemUnitPrice
字段相加并设置要使用 PayPal 支付的金额。
我已经检查了他们允许的 PayPals 按钮功能,您只能在创建按钮时为用户设置一个给定的价格来支付。
有没有办法可以将 PayPal 按钮链接到我的数据库,以便显示所有ItemUnitPrice
字段的总数。
保存总数的变量ItemUnitPrice
:
<?php
$Total = $Quantity * $ItemUnitPrice;
?>
贝宝“立即付款”按钮:
<html>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="KAMQ5PVWVDYYN">
<input type="image" src="https://www.paypalobjects.com/en_GB/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_GB/i/scr/pixel.gif" width="1" height="1">
</form>
</html>
编辑:
是的,我做了一些愚蠢的错误!
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_BLANK">
<input type="hidden" name="cmd" value="_xclick" />
<input type="hidden" name="business" value="info@asianweddingservices.org" />
<input type="hidden" name="item_name" value="<? $ItemDesc ?>" />
<input type="hidden" name="item_number" value="<?$ItemCode ?>" />
<input type="hidden" name="amount" value="<?$Total ?>" />
<input type="hidden" name="currency_code" value="GBP" />
<input type="hidden" name="lc" value="GB" />
<input type="hidden" name="bn" value="PP-BuyNowBF" />
<input src="paypal/purchase.png" name="Submit" type="image" value="purchase" alt="Purchase" />
</form>