<BODY bgcolor=#f2fff4 leftmargin=0 topmargin=0 background='i/world/repait.jpg' style='background-attachment: fixed;'>
<?
$now=time();
include("inc/db_connect.php");
$stat = mysql_fetch_array(mysql_query("select user, id, bloked, t_time, proff, battle, room, proff, credits from players where user='".addslashes($user)."' and pass='".addslashes($pass)."'"));
if ($stat[credits]>=15) {
if ($stat['bloked']) echo"<script>top.location='index.php?action=logout'</script>";
if ($stat[t_time]) { header("Location: prison.php"); exit; }
elseif ($stat[battle]) { header("Location: battle.php"); exit; }
elseif ($stat['k_time']) { header("Location: academy.php"); exit; }
elseif ($stat['r_time']) { header("Location: vault.php"); exit; }
elseif ($stat[room]!="11") { header("Location: main.php"); exit; }
else {
include("inc/html_header.php");
echo"<body bgcolor=#EBEDEC leftmargin=0 topmargin=0>";
echo"
// Переливание
if ($stat[proff]==3) {
echo"
<table width=100% cellspacing=0 cellpadding=5>
<tr>
<td align=center>
<table width=100% cellspacing=0 cellpadding=5 align='center' style='border-style: outset; border-width: 1' border=0>
<tr>
<td width=100% align=center>Сдесь Вы всегда можете поменять свои Рубли в Гривны!";
$ac=mysql_query("SELECT * FROM repair where type=0 order by srok");
for ($i=0; $i<mysql_numrows($ac); $i++) {
$acs=mysql_fetch_array($ac);
if ($stat[credits]>=$acs[m]) {
echo"
<table width=100% valign=center cellspacing=0 cellpadding=5 style='border-style: outset; border-width: 0' border=0>
<tr valign=center>
<td valign=center align=center><input style='TEXT-ALIGN: Center; background: i/inf/line.gif; BORDER-RIGHT: #aaffaa 1px double; BORDER-TOP: #aaffaa 1px double; BORDER-LEFT: #aaffaa 1px double; BORDER-BOTTOM: #aaffaa 1px double' type=button class=input value=' ".$acs['title']." '";
if ($stat[k_time]<$now) echo" onclick=\"if (confirm(' ".$acs['title']."? ')) window.location='repair3.php?getproff=$acs[id]&'+Math.random();''\""; else echo" disabled";
echo"</td></tr>";
}
else echo"
У вас не хватает монет для переливания их в слитки!";
}
echo"
</table>
</td>
</tr>
</table>
";
// Конец получения спец.
unset($ac, $acs);
echo"</td>
</tr>
</table>
</td>
</tr>
</table>";
}
else echo"
<table width=100% cellspacing=0 cellpadding=5 align='center' style='border-style: outset; border-width: 1' border=0>
<tr>
<td><center>Переливать могут только кузнецы!</center></td>
</tr>
</table>";
?>
БД
-- --------------------------------------------------------
--
-- Структура таблицы `repair`
--
CREATE TABLE `repair` (
`id` int(1) NOT NULL default '0',
`type` int(1) NOT NULL default '0',
`title` varchar(255) NOT NULL default '',
`credits` int(11) NOT NULL default '0',
`f_credits` int(11) NOT NULL default '0',
`srok` int(11) NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=cp1251;
--
-- Дамп данных таблицы `repair`
--
INSERT INTO `repair` VALUES (1, 0, 'Поменять 100 руб. на 1 грн.', 100, 1, 0);
-- --------------------------------------------------------