Paypal接受INR付款

问题描述 投票:0回答:1

我使用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>

任何人都可以帮忙解决这个问题吗?

php paypal
1个回答
0
投票

请检查您购买的付款方式。例如:( DoDirect,ExpressCheckout)。 INR支持特定的付款方式。回顾一切。

© www.soinside.com 2019 - 2024. All rights reserved.