"; - echo "Stats for $key"; + echo "Stats for $key (minimal 10 matches)"; echo "
| Playername | @@ -53,7 +54,9 @@ error_reporting(E_ALL); if (!isset($player_data['playername']) || is_null($player_data['playername'])) { continue; // Skip this iteration and move to the next } - + if ($player_data['matches'] < 10){ + continue; + } $player_name = $player_data['playername']; $deaths = number_format($player_data['deaths'], 2, ',', ''); $kills = number_format($player_data['kills'], 2, ',', '');
|---|