Is there a way to count the number of rows in a 2D array?
I have the array defined as:
$MyTable = array(array(),array()); //Row x Column
count($MyTable[$x]) will give me the number of columns in row $x, but how can I get the total number of rows?
Thanks,
E