Файл: moduls/ban.php
Строк: 24
<?
include_once '../core/system.php';
echo only_reg();
echo no_ban();
$header = 'Бан';
include_once '../core/head.php';
switch($act) {
case 'vikup':
if($user[gold] > 499){
mysql_query("UPDATE `user` SET `gold` = '".($user['gold']-500)."' WHERE `id` = '$user[id]' LIMIT 1");
mysql_query("UPDATE `user` SET `ban` = '0' WHERE `id` = '$user[id]' LIMIT 1");
header('Location: /index.php');
$_SESSION['message'] = 'Бан снят!';
exit();
}else{
header('Location: ?');
$_SESSION['err'] = 'Не достаточно золота!';
exit();
}
break;
default;
echo "<div class='player center'>Ваш персонаж заблокирован, соблюдайте правила игры и в следующий раз вас не заблокируют!</div>";
echo "<div class='player center'>";
echo "<a class='btn' href='?act=vikup'><span class='end'><span class='label'>Откупиться за <img src='/images/icon/gold.png'> 500</span></span></a>";
echo "</div>";
}
include_once '../core/foot.php';
?>