PHP開發(fā)簡單圖書借閱系統(tǒng)之創(chuàng)建主頁面
本節(jié)我們來創(chuàng)建用戶登錄后跳轉(zhuǎn)的主頁面。
主頁頭部是各種書的目錄分類。
主頁面用來顯示id號,書名,價格,入庫時間,類別,現(xiàn)有書的庫存數(shù),以及書的借閱操作。
主頁面底部用來顯示分頁相關(guān)的項和信息總數(shù)
前面創(chuàng)建了可以調(diào)用的公共頭部文件head.php
<?php include("head.php");?>
使用<table>標簽,使用<tr><td>來簡單的布局
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>圖書管理系統(tǒng)主頁面</title> <style> body,td,th {font-family: 微軟雅黑;font-size: 9px;color: #222;} body {background-color: #FFFFFF;line-height:20px;} a:link {color: #222;text-decoration: none;} a:visited {text-decoration: none;color: #222;} a:hover {text-decoration: underline;color: #FF0000;} a:active {text-decoration: none;color: #999999;} </style> </head> <body> <?php include("head.php");?> <table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC"> <tr> <td width="" height="30" align="center" bgcolor="#FFFFFF" class="line2">ID</td> <td width="" align="center" bgcolor="#FFFFFF" class="line2">書名</td> <td width="" align="center" bgcolor="#FFFFFF" class="line2">價格</td> <td width="" align="center" bgcolor="#FFFFFF" class="line2">入庫時間</td> <td width="" align="center" bgcolor="#FFFFFF" class="line2">類別</td> <td width="" align="center" bgcolor="#FFFFFF" class="line2">現(xiàn)有數(shù)量(本)</td> <td width="" align="center" bgcolor="#FFFFFF" class="line2">操作</td> </tr> <tr> <td height="30" align="center" bgcolor="#FFFFFF"></td> <td align="center" bgcolor="#FFFFFF"></td> <td align="center" bgcolor="#FFFFFF"></td> <td align="center" bgcolor="#FFFFFF"></td> <td align="center" bgcolor="#FFFFFF"></td> <td align="center" bgcolor="#FFFFFF"></td> <td align="center" bgcolor="#FFFFFF" class="line2"></td> </tr> </table> <table width="100%" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#CCCCCC"> <tr> <td height="35" align="center" bgcolor="#FFFFFF"> 首頁 | 上一頁 |<a href="">下一頁</a> |<a href="">末頁</a> 頁次:/頁 共有/條信息</td> </tr> </table> <table width="100%" height="30" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#CCCCCC"> <tr> <td height="19" align="center"> Copyright @ 2013-2016</td> </tr> </table> </body> </html>