Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

Code Block
<?php
    $eshopId = "456093";
    $recipientAmount=10.00;
    $recipientCurrency = "RUB";
    $orderId=1;
    $serviceName='Оплата заказа 1';
    $secretKey = 'mySecretKey';
    $recurringType = "Activate";
    $email = "test@mail.ru";
    
    $hash_str = md5($eshopId."::".$orderId."::".$serviceName."::".$recipientAmount."::".$recipientCurrency."::".$recurringType."::".$secretKey);
    $hash = md5($hash_str);
?>
<form action='https://merchant.intellectmoney.ru/ru/' enctype="application/x-www-form-urlencoded">
    <input id='eshopId' type='hidden' value='<?=$eshopId?>' name='eshopId'/>
    <input id='orderId' type='hidden' value='<?=$orderId?>' name='orderId'/>
    <input id='serviceName' type='hidden' value='<?=$serviceName?>' name='serviceName'/>
    <input id='recipientAmount' type='hidden' value='<?=$recipientAmount?>' name='recipientAmount'/>
    <input type='hidden' value='<?=$recipientCurrency?>' name='recipientCurrency'/>
    <input id='user_email' type='hidden' value='<?=$email?>' name='email'/>
    <input id='recurringType' type='hidden' value='<?=$recurringType?>' name='recurringType'/>
    <input type='hidden' name='hash' value="<?=$hash?>" />
    <input type=submit value='createInvoce' /><br/>
</form>

...