RE: [PHP] question about multidimension array

2001-02-19 Thread ..s.c.o.t.t..
> -Original Message- > From: Zenith [mailto:[EMAIL PROTECTED]] > Subject: [PHP] question about multidimension array > > Consider the following code: > > $ary1 = array ("one","two"); > $ary2 = array ("three","four"); >

[PHP] question about multidimension array

2001-02-19 Thread Zenith
Consider the following code: $ary1 = array ("one","two"); $ary2 = array ("three","four"); $2d_Dimension[] = $ary1; $2d_Dimension[] = $ary2; // is $2d_Dimension a 2 dimensional array? // and the next question, how to get out content of the $2d_Dimension[] array while ( list ( $rec_no, $ary ) =