让我知道通过表单从我的数据库中删除用户的正确方法是什么。
<?php
if (!$_POST[update])
{
echo
("<form method=\"POST\">
<input type=\"submit\" value=\"delete\" name=\"Delete\" />
</form>");
}
else{
$update = mysql_query("DELETE username = 'ddd' FROM `users`;");
or die(mysql_error());
}
// mysql_query("DELETE smth from users");
?>
请纠正错误,并教我为什么会这样:
解析错误:语法错误,磁盘中出现意外的“或”(T_LOGICAL_OR):...\xampp\htdocs\projectx\members.php 在线...