php – 将HTML选择/下拉列表提交到MySQL数据库

我正在尝试提交HTML form并将输入和选择信息输入MySQL数据库表.我的代码正在输入 input type =“text”数据进入表格,但它没有在 select中输入数据.这是 form我一直在使用:form enctype=multipart/form-d...

我正在尝试提交HTML< form>并将输入和选择信息输入MySQL数据库表.我的代码正在输入< input type =“text”>数据进入表格,但它没有在< select>中输入数据.

这是< form>我一直在使用:

<form enctype="multipart/form-data" action="send.php" method="post">
    <select name="gender">
        <option value="Male"> Male</option>
        <option value="Female">Female</option>
    </select>
    <input type="text" name="name">
    <input type="submit" value="Add">
</form>

这是我用来将表单输入表格的PHP:

<?php
$gender=$_POST['gender']; // This is the select/dropdown
$name=$_POST['name'];  // This is the text input

mysql_connect("", "", "") or die(mysql_error()) ; 
mysql_select_db("") or die(mysql_error()) ; 

mysql_query("INSERT INTO `table1` VALUES ('$gender', '$name')") ; 
?>

解决方法:

嗯……如果那不起作用,试试:

mysql_query("INSERT INTO table1 VALUES ('".$gender."','".$name."');");

本文标题为:php – 将HTML选择/下拉列表提交到MySQL数据库

基础教程推荐