Hello:
I have a select box which offers the user the option of selecting multiple selections.
I'm a bit lost as to how --if multiple selections are made, to save these selections into mysql.
here is the code of my select box:
<form name="theForm">
<select size=11 name=servicearea id=select multiple onMouseDown="GetCurrentListValues(this);" onchange="FillListValues(this);" style="width:200;">
<option value="Air Intake">Air Intake</option>
<option value="Brake">Brake</option>
<option value="Clutch">Clutch</option>
<option value="Cooling System">Cooling System</option>
<option value="Oil Change">Oil Change</option>
<option value="Driveshaft & Axle">Driveshaft & Axle</option>
<option value="Engine Mechanical">Engine Mechanical</option>
<option value="Exhaust">Exhaust</option>
<option value="Steering">Steering</option>
<option value="Suspension">Suspension</option>
<option value="Transmission">Transmission</option>
<option value="Other">Other</option>
</select>
<br>
<font face=arial size=1><a href="javascript:SelectAllList(document.theForm.servicearea);" style="color:blue;">select
all</a> <a href="javascript:DeselectAllList(document.theForm.servicearea);" style="color:blue;">deselect
all</a></font>
</form>
Any thoughts on this is appreciated!
Mossa