A
Anonymous
Guest
Hi guys; I need a little help; I have a drop down list:
What I want is if user select the last option i.e. 'Other', they are required to specify the car they requested by entering car model in a text box (named car_other). Could someone please tell me how to insert this second value into a Mysql table.
F.Y.I I'm using php, Mysql and apache
Code:
<select name="car">
<option>-Select Car-</option>
<option value="MAZDA">MAZDA</option>
<option value="OPEL">OPEL</option>
<option value="Nissan">Nissan</option>
<option value="Volvo">Volvo</option>
<option value="">Other</option>
</select>
What I want is if user select the last option i.e. 'Other', they are required to specify the car they requested by entering car model in a text box (named car_other). Could someone please tell me how to insert this second value into a Mysql table.
F.Y.I I'm using php, Mysql and apache