Posted by Gaga on 11/23/06 08:58
Hi to all !
How to insert one value of the radio button int db. ?
<input type="radio" name="option" value="male">
<input type="radio" name="option" value="female">
----------------------------------------------------------
How to make the same but with checkbox ?
<input type="checkbox" name="checkbox" value="male">
<input type="checkbox" name="checkbox" value="female">
---------------------------------------------------------
How to insert selected value from the dropdown menu ?
<select name="year" id="year">
<option>2005</option>
<option>2006</option>
</select>
---------------------------------------------------------------------
[Back to original message]
|