security1.php 特殊用户页面保护摸板
security2.php 一般用户页面保护摸板
login2.php 用户登陆页面
index.php 一般用户页面保护范例
backend_index.php 特殊用户页面保护范例
This file is backend_index.php .
<?php
//*****************************************************
// Filename: backend_index.php
// Author: Macro Zeng
// Version: 1.0
// Date: 2000-05-14
// Description: index page of backend
//******************************************************
include ("security1.php");
include ("security2.php");
?>
<html>
<title></title>
<head>
<link rel="stylesheet" href="class/style.css">
</head>
<center>
<h1>Book online Backend </h1><br>
<h2>Index Page</h2>
<br><br>
<a href="backend_list.php?<?php echo $sid?>">
Book List</a><br><br>
<a href="add_book.php?<?php echo $sid?>">
Add book</a><br><br>
<a href="analysis.php?<?php echo $sid?>">
Statistic Crosstab</a><br><br>
<a href="user_info.php?<?php echo $sid?>">
User info</a><br><br>
<a href="user_info_add.php?<?php echo $sid?>">
Add User</a><br><br>
<a href="modify_category.php?<?php echo $sid?>">
Category Modify</a><br><br>
<a href="delete.php?<?php echo $sid?>">
Delete User or Book</a><br><br>
<a href="logout.php?<?php echo $sid?>">
Logout</a><br><br>
</center>
(Application:Book-Online Author:Macro Zeng Homepage:http://wcid4u.yes8.com/) |