Created
February 21, 2020 04:42
-
-
Save Aerwix/e821c19f1dd0a1d1b31036fd0b45a705 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if(!defined('INITIALIZED')) | |
exit; | |
$main_content .= '<div style="text-align: center; font-weight: bold;">Top 30 fraggers on ' . htmlspecialchars($config['server']['serverName']) . '</div> | |
<table border="0" cellspacing="1" cellpadding="4" width="100%"> | |
<tr bgcolor="' . $config['site']['vdarkborder'] . '"> | |
<td class="white" style="text-align: center; font-weight: bold;">Name</td> | |
<td class="white" style="text-align: center; font-weight: bold;">Frags</td> | |
</tr>'; | |
$i = 0; | |
foreach($SQL->query('SELECT `killed_by` as `name`, COUNT(`killed_by`) AS `frags` FROM `player_deaths` WHERE `is_player` = 1 GROUP BY `killed_by` ORDER BY COUNT(`killed_by`) DESC LIMIT 0, 30;') as $player) | |
{ | |
$i++; | |
$main_content .= '<tr bgcolor="' . (is_int($i / 2) ? $config['site']['lightborder'] : $config['site']['darkborder']) . '"> | |
<td><a href="?subtopic=characters&name=' . urlencode($player['name']) . '">' . htmlspecialchars($player['name']) . '</a></td> | |
<td style="text-align: center;">' . $player['frags'] . '</td> | |
</tr>'; | |
} | |
$main_content .= '</table>'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment