Файл: test.masteram.us/top/fish.php
Строк: 18
<?
include '../Core.php';
$set['title']='Рейтинги рыболовов';
include_once '../sys/inc/thead.php';
title();
err();
echo'<div class="linechat">';
$result_ball = mysql_query( "SELECT id, nick, extra_ball FROM user WHERE extra_ball > 0 order by `extra_ball` desc limit 10" );
while ( $row = mysql_fetch_array( $result_ball, MYSQL_ASSOC ) )
{
$id_is = $id_is + 1;
echo $id_is . '.';
printf ( " <a href='/info.php?id=%s'>%s</a> %s <img src='/style/icons/fish.png' alt='' class='icon'/><br />", $row["id"], $row["nick"], $row["extra_ball"] );
}
if($id_is < 1){ echo'Активных участников ещё нет.<br />'; }
mysql_free_result( $result_ball );
echo'</div>';
echo "<img src='/style/left.gif' alt='' class='icon'/>";
echo " <a href='/top/'>Рейтинги</a><br />n";
include_once '../sys/inc/tfoot.php';
?>