In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > Hi gang- > > I am working on a javascript box that will allow the user to drag values > from one select box to another. I will use this box to set the values. > This is a standard, multiple select box. On the next page I need to > figure out what PHP is doing with the data coming in. > > If I send 5 fields to the next page PHP will show me one when I echo the > variable to the page. If I try to split the varaiable I still get only > one value in the echo. Tried to reponse.write it in asp and I get the > string with comma seperate values. > > Help!
If you are using a SELECT MULTIPLE you need to name the item as an array, e.g. NAME="multi[]" - then loop through the array in the target script to extract the values. Don't forget to either define a default selection or check for 'none selected' -- David Robley Temporary Kiwi! Quod subigo farinam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php