• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

top 5

TriamerA

The Mystic One.
Joined
Nov 16, 2008
Messages
1,257
Reaction score
18
Location
Poland
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:
Back
Top