• 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!

Problem z top 5 players jak zrobić aby nie było widać adminów?

Mareczin

New Member
Joined
Jul 22, 2014
Messages
4
Reaction score
0
Witam mam problem nie wiem co zrobić aby nie wyświetlały się postacie adminów

jak wygląda panel:
yPYYWHI.jpg


I kod PHP
PHP:
    <?PHP
                            $position = 1;
                            foreach($SQL->query('SELECT `name`,`level`, `online` FROM players ORDER BY `level` DESC LIMIT 7') as $i => $data)
                            {
                                echo  $position . '  <a style="font-weight:bold;text-decoration:none;" href="?subtopic=characters&name='.urlencode($data['name']).'">'.($data['online']>0 ? "<font color=\"green\">".htmlspecialchars($data['name'])."</font>" : "<font color=\"red\">".htmlspecialchars($data['name'])."</font>").'</a> ( ' . $data[level] . ' )<br>';
                            $position = $position+1;
                            }
                        ?>

I co zrobić aby nie były wyświetlane postacie adminów?
 
Code:
$SQL->query('SELECT `name`,`level`, `online` FROM players WHERE group_id < 2 ORDER BY `level` DESC LIMIT 7')
 
$SQL->query('SELECT `name`,`level`, `online` FROM players WHERE group_id < 2 ORDER BY `level` DESC LIMIT 5')

Dokładnie tak to będzie
 
Back
Top