I have a double-dimension arrays I can call the data:
array[0][0] and array[1][1]
The data displays properly, but i keep getting the error: Undefined offset. I can't figure out whats going on. Anyone have any ideas? Thanks!
Ed
It means you're trying to get the value of an array element that doesn't exist.
i know what it means, but it doesn't make sense. I explicitly call:
echo myArray[0][0];
and data is showing properly. If the data is coming up, why am I getting the error? There is no loop or incrementor exceeding the array size.
Why are you getting the error? The answer I gave is as detailed as the original question. I haven't seen the code that's causing the problem.