FW: [PHP] dealing with arrays

2003-08-28 Thread Aris Santillan
-Original Message- From: Curt Zirzow [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27, 2003 2:09 PM To: Php (E-mail) Subject: Re: [PHP] dealing with arrays * Thus wrote Ford, Mike [LSS] ([EMAIL PROTECTED]): On 27 August 2003 04:22, Aris Santillan wrote: I Have pEntry One

[PHP] dealing with arrays

2003-08-27 Thread Aris Santillan
hi I Have pEntry One input type=text name=name[] input type=text name=tel[] input type=checkbox name=check[] value=1 pEntry Two input type=text name=name[] input type=text name=tel[] input type=checkbox name=check[] value=1 pEntry Three input type=text name=name[] input type=text name=tel[]

[PHP] dealing with arrays

2003-08-27 Thread Aris Santillan
hi I Have pEntry One input type=text name=name[] input type=text name=tel[] input type=checkbox name=check[] value=1 pEntry Two input type=text name=name[] input type=text name=tel[] input type=checkbox name=check[] value=1 pEntry Three input type=text name=name[] input

Re: [PHP] dealing with arrays

2003-08-27 Thread Marek Kilimajer
Then you must include keys: input type=text name=name[1] input type=text name=tel[1] input type=checkbox name=check[1] value=1 input type=text name=name[2] input type=text name=tel[2] input type=checkbox name=check[2] value=1 and so on. This is needed bacause only checked checkboxes are send on

Re: [PHP] dealing with arrays

2003-08-27 Thread CPT John W. Holmes
: Tuesday, August 26, 2003 11:21 PM Subject: [PHP] dealing with arrays hi I Have pEntry One input type=text name=name[] input type=text name=tel[] input type=checkbox name=check[] value=1 pEntry Two input type=text name=name[] input type=text name=tel[] input type=checkbox name=check[] value=1

RE: [PHP] dealing with arrays

2003-08-27 Thread Ford, Mike [LSS]
On 27 August 2003 04:22, Aris Santillan wrote: I Have pEntry One input type=text name=name[] input type=text name=tel[] input type=checkbox name=check[] value=1 pEntry Two input type=text name=name[] input type=text name=tel[] input type=checkbox name=check[] value=1 pEntry Three

Re: [PHP] dealing with arrays

2003-08-27 Thread Curt Zirzow
* Thus wrote Ford, Mike [LSS] ([EMAIL PROTECTED]): On 27 August 2003 04:22, Aris Santillan wrote: I Have pEntry One input type=text name=name[] input type=text name=tel[] input type=checkbox name=check[] value=1 The way to combat this is to use explicit subscripts in