$server['games'] contains a string of number seperated with commas, ie: $string = "1,2,3,4";
i haven't read too much on arrays, but i'm wondering why can't array(); take values from a string of numbers.
e.g.
array(1,2,3); // returns: Array ( [0] => 1 [1] => 2 [2] => 3 )
shouldn't it be the same as:
$string = "1,2,3";
array($string); // returns: Array ( [0] => 1,2,3 )
how come? like i said, perhaps i dont understand arrays well enough to understand.