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: http://www.php.net/u

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: http://www.php.

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. 1-1 1-2 2-1 2-2 Checking off 1-1 and 2-2 would create the following variables (assuming register_globals is on) in the target php script for the form: $array1=array

[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