Forum Moderators: coopster
$arr2d = array(1=>array(2=>'1,2'));
so
$arr2d[1][2]is 1,2 then. it should be possible to use
$arr2d[2][1] = 'test';to set values of the array.
this array is automatically global. only if you make this in a function it's not. check variable scope in the php docs for more info.