Howdie folks,
I need a multiple select drop down menu as follows:
<form method="get" name="myFood">
<select name="food" size="5" multiple>
<option value="1">Peas</option>
<option value="2">Cabbage</option>
<option value="3">Carrots</option>
</select>
</form>
That results in the get variables like...
?food=1&food=3
I don't know how to pick this up with PHP as each GET variable seems to over wright the previous one.