s
This commit is contained in:
parent
c6a9ae411b
commit
d5348627d1
1 changed files with 3 additions and 0 deletions
|
|
@ -43,6 +43,9 @@ error_reporting(E_ALL);
|
||||||
if (!isset($player_data['playername']) || is_null($player_data['playername'])) {
|
if (!isset($player_data['playername']) || is_null($player_data['playername'])) {
|
||||||
continue; // Skip this iteration and move to the next
|
continue; // Skip this iteration and move to the next
|
||||||
}
|
}
|
||||||
|
if($player_data['matches'] == 0){
|
||||||
|
continue;
|
||||||
|
}
|
||||||
$player_name = $player_data['playername'];
|
$player_name = $player_data['playername'];
|
||||||
$deaths = number_format($player_data['deaths'], 2, ',', '');
|
$deaths = number_format($player_data['deaths'], 2, ',', '');
|
||||||
$kills = number_format($player_data['kills'], 2, ',', '');
|
$kills = number_format($player_data['kills'], 2, ',', '');
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue