Paypal接受INR付款
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Paypal接受INR付款相关的知识,希望对你有一定的参考价值。
我使用paypal标准支付系统来接受我的客户付款。我已将INR作为我的paypal帐户中的主要内容。但是当我将货币代码作为INR传递时它会出错。我已经在一些网站上提到了这个问题,包括
https://www.paypal-community.com/t5/About-Business-Archive/Accepting-Indian-currency/td-p/615019这是我的代码:
<form action="<?php echo $paypal_link; ?>" method="POST">
<!-- Identify your business so that you can collect the payments. -->
<input type="hidden" name="business" value="<?php echo $paypal_username; ?>">
<!-- 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="<?php echo $row['name']; ?>">
<input type="hidden" name="item_number" value="<?php echo $row['id']; ?>">
<input type="hidden" name="amount" value="<?php echo $row['price']; ?>">
<input type="hidden" name="currency_code" value="INR">
<!-- Specify URLs -->
<input type='hidden' name='cancel_return' value='http://.....'>
<input type='hidden' name='return' value='http:....'>
<!-- Display the payment button. -->
<input type="image" name="submit" border="0"
src="https://www.paypalobjects.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.paypalobjects.com/en_US/i/scr/pixel.gif" >
</form>
任何人都可以帮忙解决这个问题吗?
答案
请检查您购买的付款方式。例如:( DoDirect,ExpressCheckout)。 INR支持特定的付款方式。回顾一切。
以上是关于Paypal接受INR付款的主要内容,如果未能解决你的问题,请参考以下文章