PHP develops simple book background management system book query page
In this section, there is a book statistics column "book query" function page in the menu management column.
Use this page to select the book name, serial number, price, storage time, book category,
Then fill in the various books in the query management system and display them on the page, so the
administrator can perform operations. As shown in the figure:
To query the content of the text box, use <form> form
Use <table> form outside and <tr>< inside td>Layout.
Add<select><option>select box.
The display page also uses a <table> table layout.
<body> <table width="100%" border="0" align="center" cellpadding="2" cellspacing="1" class="table"> <tr> <td width="100%" height="27" valign="top" bgcolor="#FFFFFF" class="bg_tr"> 后臺(tái)管理 >> 圖書查詢</td> <tr> <td height="27" valign="top" bgcolor="#FFFFFF" class="bg_tr"> <form id="form1" name="form1" method="post" action="" style="margin:0px; padding:0px;"> <table width="45%" height="42" border="0" align="center" cellpadding="0" cellspacing="0" class="bk"> <tr> <td width="36%" align="center"> <select name="seltype" id="seltype"> <option value="id">圖書序號(hào)</option> <option value="name">圖書名稱</option> <option value="price">圖書價(jià)格</option> <option value="time">入庫(kù)時(shí)間</option> <option value="type">圖書類別</option> </select> </td> <td width="31%" align="center"> <input type="text" name="coun" id="coun" /> </td> <td width="33%" align="center"> <input type="submit" name="button" id="button" value="查詢" /> </td> </tr> </table> </form> </td> </tr> </table> <table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC" class="table" > <tr> <td width="7%" height="35" align="center" bgcolor="#FFFFFF">ID</td> <td width="28%" align="center" bgcolor="#FFFFFF">書名</td> <td width="12%" align="center" bgcolor="#FFFFFF">價(jià)格</td> <td width="24%" align="center" bgcolor="#FFFFFF">入庫(kù)時(shí)間</td> <td width="12%" align="center" bgcolor="#FFFFFF">類別</td> <td width="24%" align="center" bgcolor="#FFFFFF">操作</td> </tr> <tr align="center"> <td class="td_bg" width="7%"></td> <td class="td_bg" width="28%" height="26"></td> <td class="td_bg" width="12%" height="26"></td> <td class="td_bg" width="24%" height="26"></td> <td class="td_bg" width="12%" height="26"></td> <td class="td_bg" width="24%"> <a href="#">修改</a> <a href="#" class="trlink">刪除</a> </td> </tr> <tr> <th height="25" colspan="6" align="center" class="bg_tr"> 首頁(yè) | 上一頁(yè) | 下一頁(yè) | 末頁(yè) 頁(yè)次:/頁(yè) 共有/條信息 </th> </tr> </table> </body>