Hello there,
I got this problem with top players it don't show me any players ;p
The code to this part is :
Thanks =)
I got this problem with top players it don't show me any players ;p
The code to this part is :
PHP:
<div id="sidebar-right">
<div class="topplayers"></div>
<div id="vt_menu">
<ul>
<?php
$players = $SQL->query('SELECT `name`, `level`, `experience`, `online` FROM `players` WHERE `group_id` < '.$config['site']['players_group_id_block'].' AND `name` != "Account Manager" ORDER BY `level` DESC, `experience` DESC LIMIT 5;');
$i = 0;
foreach($players as $player)
{
$i++;
echo '<li class="light">'.$i.'. <a href="index.php?subtopic=characters&name='.urlencode($player['name']).'" >'.$player['name'].'</a> - Level: '.$player['level'].'</li>';
}
?>
</ul>
</div>
Thanks =)