View file user_m.php
<?
echo "<table width='100%'>";
echo "<div class='menu_razd'>";
echo "<a>♥Лучший парень♥</a>";
echo "</div>";
$pol1=mysql_query("SELECT * FROM `user` WHERE `pol` = '1' ORDER BY `rating` DESC LIMIT 1");
while ($post = mysql_fetch_array($pol1)){
echo "<td>";
avatar($post['id']);
echo "<br />";
echo "<a href='/info.php?id=$post[id]'>$post[nick]</a>";
echo "</td>";
}
echo "</table>";
?>