PHP develops simple book background management system new book management page

This section creates the "New Book Management" page in the left navigation bar

As shown:

48.png

##Use the <table> tag, use

The bottom mainly displays content such as paging and information count.

<table width="95%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC" class="table" >
	<tr>
		<td height="27" colspan="7" align="left" bgcolor="#FFFFFF" class="bg_tr">&nbsp;后台管理&nbsp;>>&nbsp;新书管理</td>
	</tr>
	<tr>
		<td width="6%" height="35" align="center" bgcolor="#FFFFFF">ID</td>
		<td width="25%" align="center" bgcolor="#FFFFFF">书名</td>
		<td width="11%" align="center" bgcolor="#FFFFFF">价格</td>
		<td width="16%" align="center" bgcolor="#FFFFFF">入库时间</td>
		<td width="11%" align="center" bgcolor="#FFFFFF">类别</td>
		<td width="11%" align="center" bgcolor="#FFFFFF">入库总量</td>
		<td width="20%" align="center" bgcolor="#FFFFFF">操作</td>
	</tr>
	<tr align="center">
		<td class="td_bg" width="6%"><?php echo $rows["id"]?></td>
		<td class="td_bg" width="25%" height="26"></td>
		<td class="td_bg" width="11%" height="26"></td>
		<td class="td_bg" width="16%" height="26"></td>
		<td width="11%" height="26" class="td_bg"></td>
		<td width="11%" height="26" class="td_bg"></td>
		<td class="td_bg" width="20%">
			<a href="#" class="trlink">修改</a>&nbsp;&nbsp;<a href="#" class="trlink">删除</a></td>
	</tr>
	<tr>
		<th height="25" colspan="7" align="center" class="bg_tr">
			首页 | 上一页 | 下一页 | 末页
			&nbsp;页次:/页&nbsp;共有?条信息
		</th>
	</tr>
</table>

After giving the CSS style, it can be completed.

Continuing Learning
||
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>PHP</title>
<style>
.table{
border: 1px solid #CAF2FF;/**/
margin-top: 5px;
margin-bottom: 5px;
background:#a8c7ce;
}
.td_bgf {
background:#d3eaef;
color:#000000;
}
.td_bg {
background:#ffffff;
color:#344b50;
}
.bg_tr {
font-family: ",Verdana, ";
color:#e1e2e3;/**/
font-size:12px;
font-weight:bolder;
background:#353c44;/**/
line-height: 22px;
}td {
color:#1E5494;
font-size:12px;
line-height: 18px;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
submitReset Code
图片放大关闭