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">系統(tǒng)設(shè)置</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">查詢統(tǒng)計</a> <ul> <li><a href="select.php" target="rightFrame">圖書查詢</a></li> <li><a href="count.php" target="rightFrame">圖書統(tǒng)計</a></li> </ul> </li> <li> <a class="head">版本信息</a> <ul> <li> <div align="center">SS3.3</div> </li> </ul> </li> </ul> </div>