本文介绍了将维护和支持费用添加到Paypal页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个项目,有和没有维护与支持费用.维护和支持费用将取决于项目总数.我需要收取维护和支持费用以及总费用.贝宝结帐页面上是否可以设置此费用的HTML变量?
我正在使用以下示例代码来创建贝宝页面:
I have an item which is available with and without Maintenance and support cost. Maintenance and support cost will depends on total number of items. I need to charge Maintenance and support cost along with the total cost. Is there any HTML variable in paypal checkout page where I can set this cost?
I''m using following sample code to create paypal page:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="seller_id">
<input type="hidden" name="item_name" value="My item name">
<input type="hidden" name="item_number" value="My item number">
<input type="hidden" name="amount" value="1.00">
<input type="hidden" name="currency_code" value="USD">
<input type="submit" value="Buy now">
</form>
任何帮助将不胜感激.
问候,
Anshh
Any help is greatly appreciated.
Regards,
Anshh
推荐答案
这篇关于将维护和支持费用添加到Paypal页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!