If I allow multiple selections in a MENU LIST, in VBSCRIPT it comes
through with each selection being separated by a comma, in the same
variable...ie.:

myVal = request("mySelectmenu")

myVal could equal -> "selection 1, selection 2, selection 3"

But in PHP, I capture it as:

$mySelectMenu = $_POST[mySelectmenu];

But $mySelectMenu only contains the last selection in the menu....

How do I capture all the selections?

Thanks!

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to