Просмотр файла ref_rat.php

Размер файла: 1.28Kb
<?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 `login` FROM `".prefix."users` order by `id` desc;");
while ($r=mysql_fetch_array($q))
{
$n=mysql_num_rows(mysql_query("SELECT `login` FROM `".prefix."users` WHERE `pid`='$r[login]';"));
if ($n>0)
$arr[$r[login]]=$n;
}

arsort($arr);
mysql_query("update `".prefix."users` set `mesto`='В рейтинге рефералов', `online`='".time()."' where `id` = '".$_USER['id']."';");

print '<div class="downsw"><b>Рейтинг по рефералам</b><br/></div>

Логин [рефералов]:<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='ref_rat.php?start=$start'>далее ....</a>";

include "header/end.inc.php";
?>