Файл: modules/user/shop_t.php
Строк: 31
<?php
if(!isset($user))
{
go('/');
}
$locate = 'in_cabinet';
$title = 'Услуги';
require_once(SYS.'/view/header.php');
$tpl->div('title', 'GOLD статус темы');
if($user['rub'] >= 5)
{
if (isset($_POST['buy']))
{
$th = abs(intval($_POST['t']));
$dayy = abs(intval($_POST['d']));
$dayt = 5 * $dayy;
$ttimme = 1*60*60*24*$dayy;
$temi = time() + $ttimme;
if ($user['rub'] >= $dayt)
{
$db->query("UPDATE `forum_t` SET `gold` = '1', `gtime` = '".$temi."' WHERE `id` = '". $th ."'");
$db->query("UPDATE `users` SET `rub` = '". ($user['rub']-$dayt)."' WHERE `id` = '". $user['id'] ."'");
$tpl->div('menu', '<center>Тема закреплена!</center>');
$tpl->div('block', img('shop.png') .'<a href="/user/shop/">Назад</a> <br/>'. NAV .'<a href="/user/panel/">Личный кабинет</a><br/>' . HICO .'<a href="/">На главную</a>');
require_once(SYS.'/view/footer.php');
exit;
}
else
{
$tpl->div('menu', '<center>Не хватает денег!</center>');
require_once(SYS.'/view/footer.php');
exit;
}
}
else
{
$tpl->div('menu', 'Цена услуги - <b>5</b> руб = 1 день. Минимальный срок заказа - 1 день.');
echo '<div class="post">
<form action="/user/shop_t/" method="post">
Введите id темы:<br/>
<input type="text" name="t" value="" /><br/>
Введите целое число кол-во дней:<br/>
<input type="text" name="d" value="" /><br/>
<input type="submit" name="buy" value="Купить" /><br/>
</form>
</div>';
}
}
else
{
$tpl->div('menu', 'Цена услуги: <b>5</b> руб - 1 день.');
$tpl->div('menu', '<center>Не хватает денег!</center>');
}
$tpl->div('block', img('shop.png') .'<a href="/user/shop/">Услуги</a> <br/>'. NAV .'<a href="/user/panel/">Личный кабинет</a><br/>' . HICO .'<a href="/">На главную</a>');
require_once(SYS.'/view/footer.php');
?>