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