Form with <select name=test multiple=yes>
Posted: Wed Oct 04, 2006 4:57 pm
Ok so I got this form that allows multiple selections. Up to this point I have been using the standard post and get methods for retrieving the values. But on this one it only returns 1 of the multiple selected items. How can I approach this with my get or post statements.
ie
They selected test1 and test2. Normally I do:
$type would be test2.
any ideas.
ie
They selected test1 and test2. Normally I do:
Code: Select all
$type= $_POST['type'];any ideas.