|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
说说这一个月左右的学习情况和心得吧!我个人认为,既然决定了去做一件事,那就要以认真的态度去对待!既然决定来学习了,那不管当初是抱着怎样的心态来到这个培训班的,都要让自己认真的投入到学习中。 <?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.php");
?>
</body>
</html>
你的留言本应该加入注册以及分页功能了,而如果你更强的话,UI(用户界面)也可以加强,完成之后,感觉是不是特有成就感?不管怎么样,咱好歹是写了一个动态网站程序了,放在自己的网站上耍耍吧。 |
|