"; echo "Player NameKillsDamage DealtTime SurvivedRank"; // Loop through the JSON data to extract player stats foreach ($jsonData['included'] as $includedItem) { if ($includedItem['type'] == "participant"){ $playerStats = $includedItem['attributes']['stats']; echo ""; echo "" . htmlspecialchars($playerStats['name']) . ""; echo "" . htmlspecialchars($playerStats['kills']) . ""; echo "" . htmlspecialchars($playerStats['damageDealt']) . ""; echo "" . htmlspecialchars($playerStats['timeSurvived']) . ""; echo "" . htmlspecialchars($playerStats['winPlace']) . ""; echo ""; } } echo ""; } else { echo "JSON file not found for the given match ID."; } } else { echo "No match ID provided."; } ?>