Hi,
I need a multiple select in a form, but when I submit, only the last selected option in the list makes it to the script.
e.a.
<select multiple name="test">
<option value=1>1</value>
<option value=2>2</value>
<option value=3>3</value>
</select>
when I choose 1 and 3, only 3 makes it through the post ($test == 3)
Where did the 1 go??
Thanx.