FW: [PHP] dealing with arrays

2003-08-28 Thread Aris Santillan
ou want to save / delete / add to junk -----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 Aug

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 > > Entry One > > > > > > > > The way to combat this is to use explicit subscripts in your form field names, like > so: > > Entry One > > > I would also add

RE: [PHP] dealing with arrays

2003-08-27 Thread Ford, Mike [LSS]
On 27 August 2003 04:22, Aris Santillan wrote: > I Have > Entry One > > > > > Entry Two > > > > > Entry Three > > > > > Entry Four > > > > > Entry Five > > > > > . > > i want to process entries only with checked checkbox > > how can i do this in php? This happens anyway, as

Re: [PHP] dealing with arrays

2003-08-27 Thread CPT John W. Holmes
name'][$key] and $_POST['tel'][$key] } Hope that helps. Sorry for the top post, but OE sucks. :) ---John Holmes... - Original Message - From: "Aris Santillan" <[EMAIL PROTECTED]> To: "Php (E-mail)" <[EMAIL PROTECTED]> Sent: Tuesday, August 2

Re: [PHP] dealing with arrays

2003-08-27 Thread Marek Kilimajer
Then you must include keys: and so on. This is needed bacause only checked checkboxes are send on submit. Aris Santillan wrote: hi I Have Entry One Entry Two Entry Three Entry Four Entry Five . i want to process entries only with checked checkbox how can i do this in php?

[PHP] dealing with arrays

2003-08-27 Thread Aris Santillan
> hi > > > I Have > Entry One > > > > > Entry Two > > > > > Entry Three > > > > > Entry Four > > > > > Entry Five > > > > > . > > i want to process entries only with checked checkbox > > how can i do this in php? >

[PHP] dealing with arrays

2003-08-27 Thread Aris Santillan
hi I Have Entry One Entry Two Entry Three Entry Four Entry Five . i want to process entries only with checked checkbox how can i do this in php?