Getting The Value Of A Combo-box Using Post Method
I wanted to use php to get the value of a combo box, and I am using post method... can anyone tell me how. Virtual Library
Solution 1:
Try:
if(isset($_POST['media_type']){
$value = $_POST['media_type'];
}
Update: Since that doesn't work for you, check to see if you are getting any post variables:
foreach ($_POSTas$var => $value) {
echo"$var = $value<br>n";
}
Post a Comment for "Getting The Value Of A Combo-box Using Post Method"