Getting matches from cache (1 month old) #139

Merged
OpzekerIT merged 10 commits from dev into main 2023-11-22 14:33:00 +00:00
Showing only changes of commit f9b854504b - Show all commits

View file

@ -59,7 +59,7 @@ $ogDescription = "Dive into the detailed match stats of DTCH Clan in PUBG. Explo
// Display the player's match stats
foreach ($players_matches as $selected_match) {
print_r($selected_match['stats']['name']);
if (isset($selected_match['stats']['name']) === $selected_player) {
if ($selected_match['stats']['name'] === $selected_player) {
echo "<h2>Recent Matches for $selected_player</h2>";
echo "<table border='1' class='sortable'>";