1 Star 1 Fork 0

FreeWind/简易的PHP图书后台管理系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
delete_admin.php 421 Bytes
一键复制 编辑 原始数据 按行查看 历史
FreeWind 提交于 2025-05-29 17:20 +08:00 . 简易的PHP图书后台管理系统
<?php
require_once('config.php');
$id = $_GET['id'];
$stmt = $connect->prepare("DELETE FROM admin WHERE id=?");
$stmt->bind_param("i", $id);
$res = $stmt->execute();
if ($res) {
echo "<script>alert('删除成功!'); location.href='password_update.php';</script>";
} else {
echo "<script>alert('删除失败,请重新删除!'); location.href='password_update.php';</script>";
}
$stmt->close();
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/FreeWind2333/Simple-PHP-Library-Management-System.git
git@gitee.com:FreeWind2333/Simple-PHP-Library-Management-System.git
FreeWind2333
Simple-PHP-Library-Management-System
简易的PHP图书后台管理系统
master

搜索帮助