Hi,
I am making practice with arrays, I want to buil a two dimensions array.
I am trying something like:
$basket[0][0]="Apple";
$basket[0][1]="yellow";
but it seems not correct...
what is wrong ?
And which is the right sintax to get out data from them ?
echo($basket[0][0]);
seems not good too...
Sorry for the stupid question but I ambecoming mad ;-)
Fabio