Re: [PHP-DB] Passing multiple form variable in PHP

2002-11-12 Thread Jeffrey_N_Dyke
using the [] makes your variable an array when it comes into php. **snip** else { print ' Multiple Check: False True '; } **snip**

RE: [PHP-DB] Passing multiple form variable in PHP

2002-11-12 Thread Hutchins, Richard
I'm pretty sure all you have to do is name your select as an array like so: Your selected values will come across as an array called $icon. If you need more info on this and how to use it, there's lots in the archives. That's where I found the info I needed. Good luck. Rich > -Original

RE: [PHP-DB] Passing multiple form variable in PHP

2002-11-12 Thread Ford, Mike [LSS]
> -Original Message- > From: Stephen Rhodes [mailto:stephen.rhodes@;scils.co.uk] > Sent: 12 November 2002 16:32 > > Wanting to use in a html form and pass > multiple value > into a php variable but does > not work. I only get a single value. Can you tell me what I > am doing wrong > ???