Suppose I've a list box with mulitple select enabled. But it seems that the variable will just obtain the first selected opiton only.
How can I get the other options as well.
Sample code:
<FORM action="add.php" method="GET">
<select name="fruit" multiple size="3">
<option value="apple">apple</option>
<option value="orange">orange</option>
<option value="banana">banana</option>
</select>
</FORM>
if i select all, only apple will pass to add.php. How do I access all orange and banana as well?
william