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">圖書(shū)管理</a> <ul> <li><a href="list.php" target="rightFrame">新書(shū)管理</a></li> <li><a href="add.php" target="rightFrame">新書(shū)入庫(kù)</a></li> </ul> </li> <li><a class="head">查詢統(tǒng)計(jì)</a> <ul> <li><a href="select.php" target="rightFrame">圖書(shū)查詢</a></li> <li><a href="count.php" target="rightFrame">圖書(shū)統(tǒng)計(jì)</a></li> </ul> </li> <li> <a class="head">版本信息</a> <ul> <li> <div align="center">SS3.3</div> </li> </ul> </li> </ul> </div>