radio buttons, checkboxes and dropdown menues

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>

------------------------------------------------------------ ---------
Gaga [ Do, 23 November 2006 09:58 ] [ ID #1545688 ]

Re: radio buttons, checkboxes and dropdown menues

Gaga wrote:
> 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>
>
> ------------------------------------------------------------ ---------
>
>

/* assume you have already connected to database and you use mysql */

/* change the "option" in the $_REQUEST[] to the name you used in the form */
$query="INSERT INTO table(column_name) VALUES('".$_REQUEST['option']."')";
/* if you use another database, change the mysql part to the one for your
database or odbc if your database isn't supported by php */
mysql_query($query);

As checkboxes may generate more than one value, the $_REQUEST['checkbox'] may
be a array in which you have to make a for loop.


//Aho
Shion [ Do, 23 November 2006 11:00 ] [ ID #1545689 ]
PHP » alt.php.sql » radio buttons, checkboxes and dropdown menues

Vorheriges Thema: mysqli-trouble with mysql5
Nächstes Thema: ORDER BY 'searchtype'