为什么我的删除查询不会从数据库中删除数据?
这是代码:
<?php
include ("includes/database.php");
session_start();
if(!$_SESSION['username']){
header('location:index.php?error=You are not an administrator');
}else{
$delete_id=$_GET['id'];
$user=$_SESSION['username'];
$delete='delete from `wall` where `ID`="'.$delete_id.'" AND `User_id`="'.$user.'" ';
$Query=mysql_query($delete) or die (mysql_error());
if ($Query){
header('location:User_page.php');
}
}
?>
查询正在运行,因为我重定向到User_page.php
,但数据库中的数据未被删除。