Файл: vkollektive2014/play_gamescool/fish/cup.php
Строк: 28
<?php
include_once '../../connect.php';
$title = $title.' :: Онлайн рыбалка :: Турниры';
include_once '../../head.php';
include_once '../../core/bb_code.php';
if(!isset($u)){
header("Location:/index.php");
exit;
}
include_once 'inc/start.php';
$posts=array();
$query=mysql_query("SELECT * FROM `fish_cup` ORDER BY `act` ASC");
if(mysql_num_rows($query)==0)
$posts[]=array('title'=>'Турниров пока нет');
else
{
$posts[]=array('title'=>'Местное время : '.date("d.m.y | H:i:s").'');
while($arr=mysql_fetch_array($query)){
$posts[]=array('icon'=>'<td rowspan="2"><img src="cup.png"/></td>','title'=>'<td><b>'.esc(trim(br(smile(stripcslashes(htmlspecialchars($arr["name"])))))).'</b></td></tr><tr><td>',
'post'=>esc(trim(br(smile(stripcslashes(htmlspecialchars($arr["rules"])))))).'<br/> <a href="cup_id.php?id='.$arr["id"].'">Подробнее</a><br/>Статус :
'.($arr['act']==0 ? 'Открыт' : 'Завершен').'<br/>
Начало : '.date("d.m.y в H:i:s",$arr['date_start']).'<br/>
Конец : '.date("d.m.y в H:i:s",$arr['date_end']).'
</td>');
}
}
$count=count($posts);
for($i=0;$i<$count;$i++){
if($i%2)
echo "<div class='div'><table><tr>".implode($posts[$i])."</tr></table></div>";
else
echo "<div class='div'><table><tr>".implode($posts[$i])."</tr></table></div>";
}
if ($u['admin']==1){
ret('В админку','cup_admin.php');}
ret('В игру','index.php');
include_once '../../foot.php';
?>