我很难找到如何删除php mysql connect中的数据行,但我不确定代码,这是我的代码:
//URL aka delete button
<a href ='deluserlist.php?customerNo=$customerNo'>
//delete from database code
<?php
include("../connection.php");
$customerNo =$_REQUEST['customerNo'];
// sending query
$del = mysql_query("DELETE FROM cust WHERE customerNo='.$customerNo.'")
or die(mysql_error());
header("Location: lotres1.php");
?>
最佳答案
您不必在此处添加连接运算符。像这样重写。
$del = mysql_query("DELETE FROM `cust` WHERE `customerNo`='$customerNo'") or die(mysql_error());
自
mysql_*
起,此(PHP 5.5.0
扩展已被弃用,以后将被删除。相反,应该使用MySQLi
或PDO_MySQL
扩展名。切换到PreparedStatements
更能抵御SQL注入攻击!关于php - 使用href从数据库中删除数据行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22277876/