Hi,
There is something I do not understand about
two-dimensional array.
If I have the following one :
$array[0][0]="Nancy";
echo $array[0][0]; // print "Nancy"
but
echo "$array[0][0]"; // print "Array[0]"
why?
This is a problem because I have to put
the array value in a string
(For example : echo "Hi $array[0][0]"
Thanks