在DIBS付款之前执行MD5操作

时间:2018-03-21 07:10:59

标签: php dibs

我是PHP的新手....我需要帮助来触发用于MD5计算的DIBS HTML支付表格上的功能

为DIBS执行mds操作的PHP代码

$parameter_string= '';
$parameter_string.= 'merchant='. $yourMerchantID;
$parameter_string.= '&orderid='. $yourOrderID;
$parameter_string.= '&currency='. $yourCurrency;
$parameter_string.= '&amount='. $yourAmount;
$md5key= MD5($key2. MD5($key1. $parameter_string) );

此处为HTML代码

 < form id="payment-form" 
   action="https://payment.architrade.com/paymentweb/start.action" 
   method="post" name="payform" onsubmit="return onPaymentFormSubmit();">

 < input name="lang" type="hidden" value="en" />

 < input name="currency" type="hidden" value="123" />

 < input name="merchant" type="hidden" value="123456" />

 < input type="hidden" name="md5key" value=""> 

 < input id="amount-text" name="amount-text" type="text" value="" />

 < input id="amount" name="amount" type="hidden" />

 < input name="orderid" type="text" value="" />

 < input name="accepturl" type="hidden" value="http://www.example.com/payment-accepted/"/>

 < input type="submit" value="Pay" />

0 个答案:

没有答案