I have a little problem with multidimensional arrays. I think they are not like those in JAVA. For instance; I have created a array something like this;
$myArray = array();
Then I try to assign 4 different arrays to it as following.
$myArray[0] = $newArray0;
$myArray[1] = $newArray1;
$myArray[2] = $newArray2;
$myArray[3] = $newArray3;
But when I try to read a data from a cell with following line,
$myArray[0][2];
I could not get the data what I was hoping for. Can you guys tell me where am I mistaken?
Thanks a lot!
$newArray0,$newArray1, etc?$someArray[x]->someMethod();- it just doesn't work for some reason.