📄 delbookok.php
字号:
<?php
session_start();
require "conn.php";
require "adminfun.inc";
require "top.php"
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title><?php echo $webname;?>_新书入库执行结果</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="../default.css" rel="stylesheet" type="text/css" />
</head>
<body>
<center>
<?
if($_SESSION['admin'] == "")
{
echo "<h2>对不起,你不是管理员,没有权限执行该操作!</h2>";
echo "<script language=javascript>alert('对不起,你不是管理员,没有权限执行该操作!');history.go(-1)</script>";
exit;
}
//获取传递来的用户信息
$tid = $_GET['id'];
$tbookname = $_GET['bookname'];
$afun = new adminos();
$afun -> delbook($tid,$tbookname,$book);
?>
</center>
</body>
</html>
<center>
<?php
require "foot.php";
?>
</center>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -