I would like to create a PHP array that will end up looking like this:
idPlayer  namePlayer Points
1             John     20
2             Sam      25
3             Ben      22
But I would like to append the values not all at once:
- First append the idPlayer and namePlayer
- Then append the points for that idPlayer (I would have a $idPlayer variable to use each time I loop)
How could I do this in PHP? I was thinking:
$myArray['idPlayer'] = "1";
$myArray['namePlayer'] = "John";
$myArray['Points'] = "20"
And then, how would I tell the array to go to the next row?
 
     
     
    