<?php
/**********************************
* @year: 2015 *
* @author: Klubv *
* @icq: 611940693 *
* @link: http://klubv.ru *
**********************************/
include "header/config.inc.php";
include "header/function.inc.php";
include "header/header.inc.php";
include "header/connect.inc.php";
include "header/click-club.class.php";
include "header/hellfish.inc.php";
$q=mysql_query("SELECT * FROM `".prefix."users` order by `id` desc;");
while ($r=mysql_fetch_array($q))
{
$n=mysql_num_rows(mysql_query("SELECT * FROM `".prefix."clicks` WHERE `who`='$r[id]';"));
if ($n>0)
$arr[$r[login]]=$n;
}
arsort($arr);
print '<b>Лучшие сегодня</b><br/>---<br/>Логин [кликов]:<br/>---<br/>';
$start=mysql_escape_string($_GET[start]);
if (empty($start))
$start=1;
foreach($arr as $key=>$value)
{
$i++;
if ($i>=$start and $i<=($start+15))
print "$i) $key [$value] <br />";
}
print "---<br />
Участников: $i
<br />";
$start=$start+15;
if ($i>15)
print "<a href='day_rat.php?start=$start'>далее ....</a>";
include "header/end.inc.php";
?>