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

📄 del_pub.php

📁 十大精典PHP项目开发全程案例+代码
💻 PHP
字号:
<?php
	session_start();
	include "conn/conn.php";
	if($_SESSION[fig] == 1){
		$dsql = "delete from tb_public where id = ".$_GET[id];
		$drst = mysql_query($dsql,$link);
		if($drst){
			echo "<script>alert('删除成功');location='managepub.php';</script>";
			exit();
		}else{
			echo "<script>alert('删除失败');history.go(-1);</script>";
			exit();
		}
	}else{
		echo "<script>alert('非法链接');window.close();</script>";
		exit();
	}
?>

⌨️ 快捷键说明

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