Dear,
I have a problem with array in PHP.
Since I have create a array say
$x[0][1] = "i";
I want to do some looping and reference to this array.
$sVariable = 'x[0][2]';
$$sVariable = 'c';
The result not what I want.
print_r($x);
only show
Array ( [0] => Array ( [1] => i ) )
I want the result is
Array ( [0] => Array ( [1] => i [2] => c ) )
Would any one can help many many thank
Cheers,
Alex