PHP 使用表单中的名称来更新 MySQL 数据库中的记录,我想使用以下方式更新id
它name
:
<form action="myfile.php" method="post">
<input type="text" name="nametextbox" id="username"/>
<input type="text" name="emailtextbox" id="email"/>
<input type="submit" name="button" id="update"/>
</form>
myfile.php
>>(如果我使用了这个名字)
if (isset($_POST['button'])){
$title=$_POST['nametextbox'];
$body=$_POST['emailtextbox'];
mysql_connect("x", "y", "z")or die (mysql_error());
mysql_select_db('c')or die (mysql_error());
mysql_query("UPDATE table_name SET title='$title', body='$body' WHERE `id`='$_GET[update]'");
mysql_close();
header("location:mawdoo3.php");
}
我如何使用id
而不是name
?