Файл: include/online.php
Строк: 62
<?
if($version == "wml")
{
header("Content-type: text/vnd.wap.wml; charset=utf-8");
echo(doctype("Онлайн").$tag);
}
elseif($version == "xhtml")
{
header("Content-type: text/html; charset=utf-8");
echo('<html>
<head>
<title>Online</title>
</head>
<body bgcolor="'.$style['background'].'" link="'.$style['link'].'" vlink="'.$style['link'].'" text="#000000">
<table align="center" border="0" cellspacing="1" cellpadding="5" width="350">
<tr align="center" bgcolor="'.$style['title'].'"><td colspan="2">
<font color="#FFFFFF"><b>Online</b></font>
</td></tr>');
}
if($version == "xhtml")
{
echo('<tr bgcolor="'.$style['bottom'].'"><td>');
}
$ar = array();
list($ar['max'], $ar['mdate']) = explode("<>", file_get_contents("online.txt"));
echo('Максимум онлайн: <b>'.$ar['max'].'</b> ('.$ar['mdate'].')');
if($version == "xhtml")
{
echo('</td></tr>');
echo('<tr bgcolor="'.$style['text'].'"><td>'.$tag);
}
$on = 1;
$onl = mysql_query("SELECT nickname FROM `session` WHERE `time` > ".(time() - (10 * 60)));
while($online = mysql_fetch_array($onl))
{
echo($on.'. ');
if($authorize)
{
echo('<a href="./?p=24&v='.$version.'&sid='.$sid.'&uid='.username2id($online['nickname']).'&d=1">'.$online['nickname'].'</a>');
}
if($status == "moderator" || $status == "admin" && $version == "xhtml")
{
echo(' <a href="./?p=27&mode=kick&v='.$version.'&sid='.$sid.'&ids='.username2id($online['nickname']).'">[kick]</a>');
}
echo('<br />');
$on++;
}
if($version == "wml")
{
if($authorize)
{
echo('<a href="./?p=0&v=wml&sid='.$sid.'">В форум</a>');
}
else
{
echo('<a href="./?p=0&v=wml">В форум</a>');
}
echo(''.$tagC.'</p></card></wml>');
} elseif($version == "xhtml")
{
echo($tagC.'</td></tr>
<tr bgcolor="'.$style['bottom'].'"><td>'.$tag.'');
if($authorize)
{
echo('<a href="./?p=0&v=xhtml&sid='.$sid.'">В форум</a>');
}
else
{
echo('<a href="./?p=0&v=xhtml">В форум</a>');
}
echo(''.$tagC.'</td></tr>
</table>
</body></html>');
}
?>