Re: [PHP] Basic multi-dimensional array help

2001-07-03 Thread Chris Anderson
When I wanted multi-dimensional with forms, I think I had to do this: - Original Message - From: "Wieger Uffink" <[EMAIL PROTECTED]> To: "Jeff Gannaway" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, July 03, 2001 8:32 AM Subject: Re: [P

RE: [PHP] Basic multi-dimensional array help

2001-07-03 Thread scott [gts]
that's stanard array behaviour... $Info contains two elements, $Info[0] and $Info[1] $Info[0] contains four elements, $Info[0][0], $Info[0][1], $Info[0][2], $Info[0][3] try this function on your $Info variable to see what it contains: array_traverse($Info); func

Re: [PHP] Basic multi-dimensional array help

2001-07-03 Thread Wieger Uffink
Hi Jeff, There probably are several ways of doing this. One is you copy $info[0] ( an array itself ) into a dummy variable, and get the values with $dummy[0] etc. Or use brackets in your variable syntax, which youll have to experiment with cause, I can never seem to remeber the right syntax :)