This commit is contained in:
Thijs Stobbelaar 2023-11-22 16:00:35 +01:00
parent 395c1e3d25
commit 9e63046aff

View file

@ -61,7 +61,7 @@ $ogDescription = "Dive into the detailed match stats of DTCH Clan in PUBG. Explo
echo "<table border='1' class='sortable'>"; echo "<table border='1' class='sortable'>";
echo "<tr><th>Match Date</th><th>Game Mode</th><th>Match Type</th><th>Map</th><th>Kills</th><th>Damage Dealt</th><th>Time Survived</th><th>win Place</th></tr>"; echo "<tr><th>Match Date</th><th>Game Mode</th><th>Match Type</th><th>Map</th><th>Kills</th><th>Damage Dealt</th><th>Time Survived</th><th>win Place</th></tr>";
foreach ($players_matches as $match) { foreach ($players_matches as $match) {
foreach($match['stats'] as $stats) foreach ($match['stats'] as $stats) {
if ($stats['name'] === $selected_player) { if ($stats['name'] === $selected_player) {
@ -96,7 +96,7 @@ $ogDescription = "Dive into the detailed match stats of DTCH Clan in PUBG. Explo
} }
}
} }
echo "</table><br>"; echo "</table><br>";
?> ?>