Versions Compared

Key

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

...

Для создания счета через HTML форму используется форма запроса платежа из протокола приема платежей IntellectMoney.

Code Block
languagephpxml
titleПример создания счета для работы с операциями по расписанию
linenumberstrue
collapsetrue
<?php
    $eshopId = "456093";
    $orderId = 1; 
    $serviceName = 'Оплата заказа 1'; 
	$recipientAmount = 10.00;
    $recipientCurrency = "RUB";
    $email = "test@mail.ru"; 
	$recurringType = "Activate";
    $secretKey = 'mySecretKey'; 

	$hash_str = $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>

...