kolom volgorde
This commit is contained in:
parent
a97e9923d0
commit
9138e8d5c5
1 changed files with 10 additions and 8 deletions
|
|
@ -37,14 +37,15 @@ error_reporting(E_ALL);
|
||||||
echo "<table border='1' class='sortable'>";
|
echo "<table border='1' class='sortable'>";
|
||||||
echo "<tr>
|
echo "<tr>
|
||||||
<th>Playername</th>
|
<th>Playername</th>
|
||||||
<th>Deaths</th>
|
<th>Win Ratio</th>
|
||||||
|
<th>K/D (Human)</th>
|
||||||
|
<th>K/D (All)</th>
|
||||||
<th>Kills</th>
|
<th>Kills</th>
|
||||||
<th>Human Kills</th>
|
<th>Human Kills</th>
|
||||||
<th>Matches</th>
|
<th>Matches</th>
|
||||||
<th>K/D (Human)</th>
|
|
||||||
<th>K/D (All)</th>
|
|
||||||
<th>Wins</th>
|
<th>Wins</th>
|
||||||
<th>Win Ratio</th>
|
<th>Deaths</th>
|
||||||
|
|
||||||
</tr>";
|
</tr>";
|
||||||
foreach ($player_datas as $player_data) {
|
foreach ($player_datas as $player_data) {
|
||||||
if (!isset($player_data['playername']) || is_null($player_data['playername'])) {
|
if (!isset($player_data['playername']) || is_null($player_data['playername'])) {
|
||||||
|
|
@ -80,14 +81,15 @@ error_reporting(E_ALL);
|
||||||
|
|
||||||
echo "<tr>
|
echo "<tr>
|
||||||
<td>$player_name</td>
|
<td>$player_name</td>
|
||||||
<td>$deaths</td>
|
<td>$winratio</td>
|
||||||
|
<td>$KD_H</td>
|
||||||
|
<td>$KD_ALL</td>
|
||||||
<td>$kills</td>
|
<td>$kills</td>
|
||||||
<td>$humankills</td>
|
<td>$humankills</td>
|
||||||
<td>$matches</td>
|
<td>$matches</td>
|
||||||
<td>$KD_H</td>
|
|
||||||
<td>$KD_ALL</td>
|
|
||||||
<td>$wins</td>
|
<td>$wins</td>
|
||||||
<td>$winratio</td>
|
<td>$deaths</td>
|
||||||
|
|
||||||
</tr>";
|
</tr>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue