Hiho I have a problem, I need a Top 5 Script in a login box or nice looking table It is for Gesior Acc ;/ could You help me?? I've found nice Script but I don't know how to make nice table ;/
Code:
<div id="box7">
<div class="content">
<h3 id="title7"><b>Best Players</b></h3>
<ul class="ul2">
<?php
$limitt = 5;
$skills = $SQL->query('SELECT name,level,experience FROM players WHERE group_id < '.$config['site']['players_group_id_block'].' AND name != "Account Manager" ORDER BY level DESC, experience DESC LIMIT '.$limitt)->fetchAll();
$number_of_rows = 0;
foreach($skills as $skillss)
{
$number_of_rows++;
echo '<li class="bg6"><a href="index.php?subtopic=characters&name='.urlencode($skillss['name']).'" class="link2">'.$skillss['name'].'</a><br>';
echo '<em class="style2">Poziom: <b>'.urlencode($skillss['level']).'</b></em></li>';
}
?>
</ul>
<p><a href="index.php?subtopic=highscores" class="link3"><b>More</b></a></p>
</div>
</div>
Last edited: