Quote:
Originally Posted by bryceowen
Mwnciau: I tried your suggestion and nothing displays.
hinch: I tried your suggestion and it just returns "Array".
|
Hinch, you are talking about a 1d array not 2d.
Bryce, are you sure there is anything in 0, 0? This:
PHP Code:
<?php
$array_2d = array ( array ( '0, 0', '0, 1', '0, 2' ), '1', array ( '2, 0', '2, 1' ) );
echo $array_2d[0][0] . '<br />';
echo $array_2d[2][1];
outputs this: