Re: [PHP] [newbie] Array form values.

2001-02-06 Thread Faisal Nasim
At 11:36 AM 2/6/2001 -0500, Toby Butzon wrote: >Or you might try a foreach($array as $element)... about the same but it >doesn't give you they key - just the value (as $element). > >foreach ($email as $current) { > // process this email addr >} // move on to the next one until the whole arr of t

Re: [PHP] [newbie] Array form values.

2001-02-06 Thread April
ield doing this - email, rank, and name, that I know of so far. - Original Message - From: "Toby Butzon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "April" <[EMAIL PROTECTED]>; "PHP General" <[EMAIL PROTECTED]> Sent: Tuesday, February 06

Re: [PHP] [newbie] Array form values.

2001-02-06 Thread Toby Butzon
Or you might try a foreach($array as $element)... about the same but it doesn't give you they key - just the value (as $element). foreach ($email as $current) { // process this email addr } // move on to the next one until the whole arr of them has been proc'd Good luck- --Toby David Robley

Re: [PHP] [newbie] Array form values.

2001-02-05 Thread David Robley
On Tue, 6 Feb 2001 08:57, April wrote: > I have a form that is an extended version of this: > > > > > > > > Unfortunately, the email[1] part was generated using a variable in a > loop. I have no idea how many of these fields there really will be each > time this is done. > > I then need to t