I have a select box in my code which looks like this:
<td align="left"><select multiple name="stuff" size="5">
<option value=""/>
<option value="opt1">Opt1</option>
<option value="opt2">Opt2</option>
<option value="opt3">Opt3</option>
</select>
It is setup as multiple so the user can select as many options as they want. The problem I am running into is that only the last option selected seems to show up in the HTTP_POST_VARS[stuff]. Does anyone know how to get it to store each value which has been selected?
Any help would be appreciated...
Darksbane