Passing price variable to PayPal with custom button(使用自定义按钮将价格变量传递给 PayPal)
问题描述
我有一个表单和一个自定义 PayPal 按钮,但如何将值/价格变量传递给 PayPal?
I have a form and a custom PayPal button, but how do I pass the value/price variable to PayPal?
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="ZEFZFYBY2SZB8">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_paynowCC_LG.gif" border="0" name="submit" alt="UGF5UGFsIC0gVGhlIHNhZmVyLCBlYXNpZXIgd2F5IHRvIHBheSBvbmxpbmUh">
<img alt="IiBib3JkZXI9"0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
我有一个变量 $total = "238.00";
推荐答案
为金额添加一个隐藏字段
Add one more hidden field for amount
<input type="hidden" name="amount" value="<?php echo $total; ?>">
这篇关于使用自定义按钮将价格变量传递给 PayPal的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!