PHP develops simple book background management system left page
In this section, we create the left function page of the management system. The main system operations in the background management system are here to facilitate the administrator to perform various operations of book management.
As shown in the figure, it includes system setting functions, book management functions, query statistics, etc. and uses the <a> tag to add jump links, realizes various aspects of the book management background function.
Used <ul><li> tags for sorting
<div style="height:100%;"> <ul id="navigation"> <li> <a class="head">系统设置</a> <ul> <li><a href="ly_pwd.php" target="rightFrame">密码修改</a></li> </ul> </li> <li><a class="head">图书管理</a> <ul> <li><a href="list.php" target="rightFrame">新书管理</a></li> <li><a href="add.php" target="rightFrame">新书入库</a></li> </ul> </li> <li><a class="head">查询统计</a> <ul> <li><a href="select.php" target="rightFrame">图书查询</a></li> <li><a href="count.php" target="rightFrame">图书统计</a></li> </ul> </li> <li> <a class="head">版本信息</a> <ul> <li> <div align="center">SS3.3</div> </li> </ul> </li> </ul> </div>