タイトルの通りです。
フォームまたはクエリが私をだましています:(
フォームに書いているのではなく、データベース内に 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')") ;
}
これはうまくいきませんか?