Advertisement
vitvayti

Untitled

Jan 9th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.56 KB | None | 0 0
  1. <?
  2. $sector = 1036;
  3. $reference = '12312';
  4. $amount = 10000;
  5. $currency = 643;
  6. $password = 'test';
  7. $url = 'http://' . $_SERVER['SERVER_NAME'] . '/payment_test/payment.php';
  8. $description = 'Тестовая покупка';
  9.  
  10. $str = $sector . $amount . $currency . $password;
  11. $md5 = md5($str);
  12. $signature = base64_encode($md5);
  13.  
  14. ?>
  15. <div class="wrapper">  
  16.     <form name="data" method="POST" action="https://test.best2pay.net/webapi/Register">
  17.         <p>Идентификатор Торговца (sector)</p>
  18.         <p><input type="text" name="sector" value="<?=$sector;?>"></p>
  19.  
  20.         <p>Номер заказа на стороне Торговца (reference)</p>
  21.         <p><input type="text" name="amount" value="<?=$reference;?>"></p>
  22.  
  23.         <p>Сумма заказа в минимальных единицах валюты (для рублей в копейках) (amount)</p>
  24.         <p><input type="text" name="reference" value="<?=$amount;?>"></p>
  25.  
  26.         <p>Код валюты по ISO4217 (currency)</p>
  27.         <p><input type="text" name="currency" value="<?=$currency;?>"></p>
  28.  
  29.         <p>Описание платежа (description)</p>
  30.         <p><input type="text" name="description" value="<?=$description;?>"></p>
  31.  
  32.         <p>Адрес страницы на стороне Торговца для приёма результатов (url)</p>
  33.         <p><input type="text" name="url" value="<?=$url;?>"></p>
  34.  
  35.         <p>Цифровая подпись (signature)</p>
  36.         <p><input type="text" name="signature" value="<?=$signature;?>"></p>
  37.         <input type="submit" name="Submit" value=" OK ">
  38.     </form>
  39. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement