【问题标题】:Paypal accept payments in INRPaypal 接受印度卢比付款
【发布时间】:2018-12-12 18:40:27
【问题描述】:

我正在使用 paypal 标准支付系统来接受客户的付款。我已在我的贝宝帐户中将 INR 作为主要帐户。但是当我将货币代码作为 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>

谁能帮忙解决这个问题?

【问题讨论】:

  • 你能给我们看看代码吗?
  • 代码已更新..
  • 您遇到了什么错误,是企业 PayPal 帐户还是个人帐户?

标签: php paypal


【解决方案1】:

请确认您购买的是哪种支付方式。例如:(DoDirect、ExpressCheckout)。 特定的付款方式支持 INR。检查所有内容。

【讨论】:

猜你喜欢
  • 2023-03-29
  • 1970-01-01
  • 2019-09-10
  • 2016-09-13
  • 2017-08-22
  • 2022-01-04
  • 1970-01-01
  • 1970-01-01
  • 2015-12-31
相关资源
最近更新 更多