?? book_del.php
字號:
<?
//######################管理員刪除庫中書##########################
include "config.php";
include "header.php";
include "admin_auth.php";
$query="delete from $book_table where book_id='".$book_id."'";
$result=mysql_query($query);
if(!$result)
{
echo "對不起,刪除不成功,請確認刪除權限!";
echo "<meta http-equiv=\"refresh\" content=\"0;url=book_admin.php\">";
}else{
echo "<p align=\"center\">刪除成功!<a href=admin.php>返回管理頁面</a></p>\n";
}
include "foot.php";
?>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -