i have a dropdown list the value of each item generate dynamic
<?php
include('../db_inc.php');
$sql="select * from genre";
$result = mysql_query($sql) or die(mysql_error());
while($row = mysql_fetch_object($result)){
$option =$row->genre_name;
$value =$row->genre_id;
echo '<option value='.$value.'>'.$option.'</option>';
}
?>
i want pass selected item value from dropdown to server and save that to database, i can do that with ajax,but i want to know php can do that without ajax function?
<form>tag) and PHP will get the value in$_POST.<form>how can access the value of selected dropdown item on server?