⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 del.php

📁 PHP留言本 设计流程: 1.需求分析: 留言本要是实现的功能是用户留言
💻 PHP
字号:
<?
session_start();
if($_SESSION['AdminLogin'])
{
if($_GET['ID'])
	{
	include("mysql.inc.php");
	$tmp_rs=mysql_query("select PID from mt_gb2 where ID=".$_GET['ID'],$Mylink);
	if($tmp_r=mysql_fetch_row($tmp_rs)) if($tmp_r[0]) mysql_query("update mt_gb2 set Renum=Renum-1 where ID=".$tmp_r[0],$Mylink);
	mysql_query("delete from mt_gb2 where ID=".$_GET['ID']." or PID=".$_GET['ID'],$Mylink);
	}
header("location: ".$_SERVER['HTTP_REFERER']);
}
else echo "请管理员输入密码先。";
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -