<?php $t = 'Пополнение счета'; require_once '../../wcore/core.php'; require_once '../../wcore/head.php'; if (isset($_POST['pay'])) { ?> <div class="mess"> <p align="center">Для пополнения счета на сумму <b><?=intval($_POST['pay'])?></b> р. перейдите к сервису WebMoney.</p> <form action="https://merchant.webmoney.ru/lmi/payment.asp" method="POST"> <input type="hidden" name="LMI_PAYMENT_AMOUNT" value="<?=intval($_POST['pay'])?>"> <input type="hidden" name="LMI_PAYMENT_DESC_BASE64" value="<?=base64_encode('ID: '.$ank->id.' | Пополнение счета')?>"> <input type="hidden" name="LMI_PAYEE_PURSE" value="R126007994854"> <input type="hidden" name="id_user" value="<?=$ank->id?>"> <input type="submit" value="Перейти к оплате"> </form> </div> <? } else { ?> <div class="mess"> <form method="POST"> <input type="text" name="pay" value="100"> <input type="submit" value="Далее"> </form> </div> <? } require_once '../../wcore/foot.php';