i got this simple code....( stupid question ....... maybe)
<form name="form1" method="post" action="basic.php">
<SELECT NAME="toppings" MULTIPLE SIZE=5>
<OPTION VALUE="mushrooms">mushrooms
<OPTION VALUE="greenpeppers">green peppers
<OPTION VALUE="onions">onions
<OPTION VALUE="tomatoes">tomatoes
<OPTION VALUE="olives">olives
</SELECT>
<input type="submit" name="Submit" value="Submit">
</form>
if the user select multiple toppings (by holding the ctrl button), how do i retrieve all the toppings?
$_POST["toppings"] contains only one topping, where can i get the other?
thx in advance =)