security1.php 特殊用户页面保护摸板
security2.php 一般用户页面保护摸板
login2.php 用户登陆页面
index.php 一般用户页面保护范例
backend_index.php 特殊用户页面保护范例

This file is index.php .
<?php
//*****************************************************
// Filename: index.php
// Author: Macro Zeng
// Version: 1.0
// Date: 2000-05-14
// Description: index page for frontend
//******************************************************
include ("security2.php");
?>

<html>
<title></title>
<head>
<link rel="stylesheet" href="class/style.css">
</head>
<center>
<h1>Book Online</h1><br>
<h2>Index Page</h2>
<br>
<?php
echo "<b>$logoutInfo</b><br><br>";
?>
<a href="list.php?<?php echo $sid?>">Book List</a><br><br>
<a href="own.php?<?php echo $sid?>">User Order Info</a><br><br>
<a href="search.php?<?php echo $sid?>">Search Book</a><br><br>
<a href="changePassword.php?<?php echo $sid?>">Change Password</a><br><br>
<a href="logout.php?<?php echo $sid?>">Logout</a><br><br>
<a href="http://10.10.10.2/intranet/mailto.php" target=black>测试期间,请大家反馈宝贵意见</a><br><br>
</center>
(Application:Book-Online Author:Macro Zeng Homepage:http://wcid4u.yes8.com/)