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

📄 del_account.php

📁 痕经典的delphi源码教程
💻 PHP
字号:
<?php
	session_start();
	include("dbconnect.inc.php");
	include("functions.inc.php");
	if($_GET["id"]!="" && $_SESSION["userid"]==1 && is_numeric($_GET["id"]) && $_GET["id"]!="1") {
		$id = $_GET["id"];
	}else {
		die("您无权访问该页,请返回或重试。");
	}
	$sql = "delete from users where id={$id}";
	$res = mysql_query($sql);
	if(!$res) {
		echo mysql_error();
		die("数据库出错,请返回重试。");
	}
	
	header("Location:msg.php?m=del_success");
?>

⌨️ 快捷键说明

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