将美元设置为CCAVENUE中的默认货币

时间:2016-07-01 06:35:09

标签: php ccavenue

我默认使用INR作为付款的设定货币。我希望以美元收到付款。如何将美元设置为我的默认货币。

我正在使用PHP api来实现CCAVENUE PAYMENT GATEWAY。一切都完成了。我只需要将美元设置为我的默认货币。

<form method="POST" name="customerData" action="ccavRequestHandler.php">
        <table width="40%" height="100" border='1' align="center"><caption><font size="4" color="blue"><b>Integration Kit</b></font></caption></table>
            <table width="50%" height="100" border='1' align="center">
                <tr>
                    <td>Parameter Name:</td><td>Parameter Value:</td>
                </tr>
                <tr>
                    <td colspan="2"> Compulsory information</td>
                </tr>
                <tr>
                    <td>TID :</td><td><input type="text" name="tid" id="tid" readonly /></td>
                </tr>
                <tr>
                    <td>Merchant Id :</td><td><input type="text" name="merchant_id" value=""/></td>
                </tr>
                <tr>
                    <td>Order Id    :</td><td><input type="text" name="order_id" value="123654789"/></td>
                </tr>
                <tr>
                    <td>Amount  :</td><td><input type="text" name="amount" value="10.00"/></td>
                </tr>
                <tr>
                    <td>Currency    :</td><td><input type="text" name="currency" value="USD"/></td>
                </tr>
                <tr>
                    <td>Redirect URL    :</td><td><input type="text" name="redirect_url" value="http://localhost/ccavResponseHandler.php"/></td>
                </tr>
                <tr>
                    <td>Cancel URL  :</td><td><input type="text" name="cancel_url" value="http://localhost/ccavResponseHandler.php"/></td>
                </tr>
                <tr>
                    <td>Language    :</td><td><input type="text" name="language" value="EN"/></td>
                </tr>

我将货币从INR更改为美元,但它无效并给我一个错误

1 个答案:

答案 0 :(得分:1)

我自己找到了答案。他们是来自ccavenue方面的一个错误。他们修复了它,现在INR和美元正在运作

相关问题