我已经使用 php 连接了我的数据库。当我按下删除按钮时,一个 php 文件连接到另一个具有以下代码的 php 文件:
<?php include("dbconfig.php");
$memberID = $_GET['memberID'];
$ISBN = $_GET['ISBN'];
$copyNr = $_GET['copyNr'];
$date_of_borrowing = $_GET['date_of_borrowing'];
//getting id of the data from url
$sql="DELETE FROM borrows WHERE ISBN=$ISBN AND memberID=$memberID AND copyNr=$copyNr AND date_of_borrowing=$date_of_borrowing";
$result = mysqli_query($conn,$sql);
//redirecting to the display page (borrows_table.php in our case)
//header("Location:borrows_table.php");
?>
当我在没有“AND date_of_borrowing=$date_of_borrowing”的情况下运行此代码时,它会正确删除元组,但是当如图所示时,没有任何反应。我检查了变量 memberID、ISBN、copyNr 和 date_of_borrowing 实际上是正确的在这个文件中给出。那么可能是什么问题?