Файл: mlord.ru/shop/purchase/index.php
Строк: 29
<?
// Автор проекта GEARBAKC
// Офф.сайт GEARNET.RU
// http://gearnet.ru/users/1
// Только эксклюзивные скрипты!
require_once('../../core/index.php');
require_once('../../core/func.php');
avt();
$title='Рубины (покупка)';
require_once('../../design/head.php');
include_once 'config.php';
if (isset($_POST['rubin'])){
if (!isset($_POST['rubin']) || $_POST['rubin']<=0) {$err='Введите корректно сумму';}
if(!isset($err)){
$summa=$_POST['rubin']*$price;
$data=file_get_contents('http://worldkassa.ru/user/oplata.php?id_shop='.$id_shop.'&summa='.$summa.'&hash='.$hash);
if (is_numeric($data)){
request("INSERT INTO `worldkassa` (`id_user`, `id_bill`, `time`, `summa`) values(?, ?, ?, ?)", array($user['id'], $data, time(), $summa));
header("Location: http://worldkassa.ru/user/oplata.php?uniq=".$data);
exit();
}else{
$_SESSION['msg']=$data;
header('Location?');
}
}else{
$_SESSION['msg']=$err;
header('Location?');
}}
echo '<div class="h2">Пополнить на:<br/>
<form action="?" method="post">
<input name="rubin" type="text" value="1"/> рубинов<br/>
<input type="submit" value="Пополнить"/><br/>
(1 рубин стоит '.$price.' RUB)
</form></div>';
echo '<div class="rzd"></div><div class="h2"><a href=/market>На рынок</a></div>';
require_once('../../design/foot.php');
?>