s
This commit is contained in:
parent
dad9b3aa95
commit
e1a209a752
1 changed files with 34 additions and 24 deletions
|
|
@ -6,6 +6,7 @@ error_reporting(E_ALL);
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
|
@ -14,6 +15,7 @@ error_reporting(E_ALL);
|
||||||
<link rel="stylesheet" href="./includes/styles.css">
|
<link rel="stylesheet" href="./includes/styles.css">
|
||||||
<script src="./lib/sorttable.js"></script>
|
<script src="./lib/sorttable.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<?php include './includes/navigation.php'; ?>
|
<?php include './includes/navigation.php'; ?>
|
||||||
|
|
@ -37,7 +39,10 @@ error_reporting(E_ALL);
|
||||||
<th>K/D (All)</th>
|
<th>K/D (All)</th>
|
||||||
</tr>";
|
</tr>";
|
||||||
|
|
||||||
foreach ($players_matches as $player_data) {
|
foreach ($players_matches as $player_datas) {
|
||||||
|
|
||||||
|
|
||||||
|
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'])) {
|
||||||
continue; // Skip this iteration and move to the next
|
continue; // Skip this iteration and move to the next
|
||||||
}
|
}
|
||||||
|
|
@ -59,7 +64,11 @@ error_reporting(E_ALL);
|
||||||
<td>$KD_ALL</td>
|
<td>$KD_ALL</td>
|
||||||
</tr>";
|
</tr>";
|
||||||
}
|
}
|
||||||
|
|
||||||
echo "</table>";
|
echo "</table>";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
echo "Last update: ";
|
echo "Last update: ";
|
||||||
foreach ($players_matches as $player_data) {
|
foreach ($players_matches as $player_data) {
|
||||||
if (isset($player_data['updated'])) {
|
if (isset($player_data['updated'])) {
|
||||||
|
|
@ -77,4 +86,5 @@ error_reporting(E_ALL);
|
||||||
<?php include './includes/footer.php'; ?>
|
<?php include './includes/footer.php'; ?>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue