RE: [PHP] how to :: multi select

2003-07-05 Thread Thomas Hochstetter
Thanks guys. I will have a look at the array[] convention. Meanwhile I did my own thing by naming them all different and parsing the $QUERY_STRING for them. It is a mess! So thanks again! Cheers Thomas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] how to :: multi select

2003-07-04 Thread Thomas Hochstetter
Hi guys, This might just be off the topic, but here it goes anyway: How can one multi select check boxes and pass them through in php, without getting mixed up with variables (email multi select style). Thomas

Re: [PHP] how to :: multi select

2003-07-04 Thread Matthew Vos
Hi Thomas. You need to name each checkbox a different name. alternatively, you can name them with array naming convention. i.e. input type=checkbox name='array1[value1]' value='Y' 1-1 input type=checkbox name='array1[value2]' value='Y' 1-2 input type=checkbox name='array2[value1]' value='Y' 2-1

Re: [PHP] how to :: multi select

2003-07-04 Thread Philip Olson
On Fri, 4 Jul 2003, Thomas Hochstetter wrote: Hi guys, This might just be off the topic, but here it goes anyway: How can one multi select check boxes and pass them through in php, without getting mixed up with variables (email multi select style). Read these faqs: