File size: 689B
<?php
include 'inc/db.php';
include 'inc/1.php';
function hc($in){
return htmlspecialchars($in);
}
echo "<div class='t2'>Кто онлайн?</div>";
if (!$_GET['p'])$_GET['p']=1;
$p=intval($_GET['p']);
$start=($p*15-15);
$q=mysql_query("SELECT * FROM `user` WHERE `click` > '".(time()-600)."' LIMIT $start, 15");
$i=1;
while ($f=mysql_fetch_assoc($q)){
echo "<div class='p".($i%2)."'>".im($f['id'])." <a href='ank.php?id=$f[id]'>".hc($f['name'])."</a>".on($f['id'])." ".vremja($f['click'])."</div>";
$i++;
}
if ($p>1)echo "<a href='?p=".($p-1)."'>Назад</a> ";
if ($i>($start+15)) echo "<a href='?p=".($p+1)."'>Далее</a>";
include_once 'inc/foot.php';
?>