0

正如标题所说。

表格或我的查询在欺骗我:(

它在我的数据库中输入 1 而不是我在表格中写的内容。

这是我的表格

<form action="deleteupdate.php" method="post">
<div id="txtHint"></div>
<input type ="submit" name="submittype" value ="Delete">
<input type ="submit" name="submittype" value ="Update">
category: <input type="text" name="category" />
</form>

和 deleteupdate.php 中的查询

else if($_POST['submittype']=="Update"){
    mysql_query("INSERT INTO `category`(`category`) 
    VALUES (category='$category')") ; 
    }

这不应该工作吗?

4

2 回答 2

3

它应该是

mysql_query("INSERT INTO `category`(`category`) 
    VALUES ('". mysql_real_escape_string($_POST['category']) ."')") ; 
于 2012-07-14T22:40:31.263 回答
1

$category 在您的脚本中不存在。
使用此代码:

else if($_POST['submittype']=="Update"){
    mysql_query("INSERT INTO `category`(`category`) 
        VALUES ('". mysql_real_escape_string($_POST['category']) ."')") ; 
}
于 2012-07-14T22:44:21.997 回答