Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/ms-access/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 将美元设置为场地中的默认货币_Php_Ccavenue - Fatal编程技术网

Php 将美元设置为场地中的默认货币

Php 将美元设置为场地中的默认货币,php,ccavenue,Php,Ccavenue,我默认使用印度卢比作为付款的设定货币。我想用美元付款。如何将美元设置为默认货币 <form method="POST" name="customerData" action="ccavRequestHandler.php"> <table width="40%" height="100" border='1' align="center"><caption><font size="4" color="blue"><b>I

我默认使用印度卢比作为付款的设定货币。我想用美元付款。如何将美元设置为默认货币

<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>
我正在使用PHPAPI实现CCAVENUE支付网关。一切都完成了。我只需要将美元设置为默认货币

<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>

集成套件
参数名称:参数值:
强制性信息
工业贸易署:
商户Id:
订单编号:
数量:
货币:
重定向URL:
取消URL:
语言:


我将货币从印度卢比改为美元,但它不起作用,并给了我一个错误,我自己找到了答案。他们是一个来自场馆方面的错误。他们解决了这个问题,现在印度卢比和美元正在发挥作用

我自己找到了答案。他们是一个来自场馆方面的错误。他们解决了这个问题,现在印度卢比和美元正在发挥作用