Hi
I have a form something like:
and in the submit page, I collect the values from "choice". However the Select is multiple and I can't figure out how to pick up all the selected values. It only seems to pick up the last value with $_POST["choice"].
Any help is appreciated.
Thanks
Chris
I have a form something like:
Code:
<form action="submit.php" method="post">
<select name="choice" size="10" multiple>
<option>1
<option>2
<option>3
</select>
<input type=submit value="Go!">
</form>
Any help is appreciated.
Thanks
Chris