我的表格代码如下。并添加ramram
作为隐藏输入。我想在此添加我的订单。
<form id="2checkout" action="https://sandbox.2checkout.com/checkout/purchase" method="post">
<input type="hidden" name="sid" value="901353720"/>
<input type="hidden" name="mode" value="2CO"/>
<input type="hidden" name="li_0_name" value="Test Product"/>
<input type="hidden" name="li_0_price" value="0.01"/>
<input type="hidden" name="ramram" value="512" />
<input type="submit" value="Click here if you are not redirected automatically" />
</form>
<script type="text/javascript">document.getElementById('2checkout').submit();</script>
并获得响应我使用了以下代码
<?php
$html = '';
foreach ($_POST as $k => $v) {
$html .= "$k => $v"; echo PHP_EOL;
}
file_put_contents('test.txt', $html); ?>
答案 0 :(得分:0)
使用特定的name
。
例如。
<input type='hidden' name='merchant_order_id' value='51200' >
了解更多参数
REF。 https://www.2checkout.com/documentation/checkout/standard-checkout