|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
不断巩固,摸透大部分PHP常用函数,并可理解OOP,MYSQL优化,以及模板session|页面 <?php
//这个页面起首判别用户是不是准确登录,如未登录,就转到登录页面。
session_start();
if((!$user_id)or(!$user_array[ticket_day])or(!$user_array[ticket_num])){
Header("Location: login.php3");
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>接待利用南京站订票体系</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" type="text/CSS" href="../include/njz_common.css">
</head>
<body>
<p> </p>
<table width="500" border="1" cellspacing="0" cellpadding="0" align="center" bordercolor="#CCCCCC">
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr bgcolor="#999999">
<td>
<div align="center"><font size="4" color="#FFFFFF">接待您 <?php echo $user_name; ?></font></div>
</td>
</tr>
</table>
<br>
<table width="400" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td><font color="#3333CC">通知布告栏:</font></td>
</tr>
<tr>
<td> 昔日无通知布告</td>
</tr>
</table>
<br>
<br>
<table width="400" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td>
<div align="center"><a href="reserve_ticket.php3">网上订票</a> <a href="test1.php3">定单查询</a> <a href="test2.php3">口令修正</a> 订票匡助 <a href="login.php3?logout=1">加入登录</a> </div>
</td>
</tr>
</table>
<br>
</td>
</tr>
</table>
<p> </p>
<?php
include("../footer.php3");
?>
</body>
</html>
看看西,人家这个编论坛,那个CMS,还有那啥CRM,我啥时候写一个呢? |
|