$total){
$page = $total;
}
$start = $page*10-10;
$result = mysql_query("SELECT * FROM `online` ORDER BY `time` DESC LIMIT ".$start.", 10") or die (sql_error(mysql_errno()));
if ($uzers == 0){
echo '
Позьзователей OnLine нет!
';
} else {
while ($zapros = mysql_fetch_array($result)) {
echo ($i % 2) ? '' : '
';
echo user($zapros['id_user'], 0).'
'.$zapros['place'].' '.times($zapros['time']).'
';
echo '
';
++$i;
}
}
echo '
';
include_once'sys/foot.sys';
exit();
?>