Re: [PHP] retrieving form checkbox values

2003-07-17 Thread Jason Wong
On Thursday 17 July 2003 16:45, caspar kennerdale wrote: I have a form which I want to post multiple values from one function to another using checkboxes. Having one value is simple- the form submits the value $File and is then retrieved in the target function via $_Request['File'] So far so

RE: [PHP] retrieving form checkbox values

2003-07-17 Thread Sævar Öfjörð
PROTECTED] Subject: Re: [PHP] retrieving form checkbox values On Thursday 17 July 2003 16:45, caspar kennerdale wrote: I have a form which I want to post multiple values from one function to another using checkboxes. Having one value is simple- the form submits the value $File and is then retrieved

RE: [PHP] retrieving form checkbox values

2003-07-17 Thread George Pitcher
other row-level form inputs ... Do something with the data... } Hope this helps George in Oxford -Original Message- From: Sævar Öfjörð [mailto:[EMAIL PROTECTED] Sent: 17 July 2003 10:35 am To: [EMAIL PROTECTED] Subject: RE: [PHP] retrieving form checkbox values I think you have

Re: [PHP] retrieving form checkbox values

2003-07-17 Thread Marek Kilimajer
2003 10:35 am To: [EMAIL PROTECTED] Subject: RE: [PHP] retrieving form checkbox values I think you have to do input type=checkbox name=File[] Then $File becomes an array. If you want to retrieve the value for each checkbox you can use a for loop and do value=$File[$i] -Original Message- From