PHP開發簡單圖書後台管理系統...LOGIN

PHP開發簡單圖書後台管理系統圖書統計完整程式碼

引入資料庫檔案config.php檔案

和判斷管理員是否登入的ly_check.php檔案

在HTML頁面中呼叫css.css樣式

把圖書統計頁面命名為count.php檔案。

<?php
include("config.php");
require_once('ly_check.php');
?>
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <title>图书统计</title>
   <link rel="stylesheet" href="css.css" type="text/css">
</head>
<body>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC" class="table">
   <tr>
      <td height="27" colspan="2" align="left" bgcolor="#FFFFFF" class="bg_tr">&nbsp;后台管理&nbsp;>>&nbsp;图书统计</td>
   </tr>
   <tr>
      <td align="center" bgcolor="#FFFFFF" height="27">图书类别</td>
      <td align="center" bgcolor="#FFFFFF">库内图书</td>
   </tr>
   <?php
   $sql="select type, count(*) from yx_books group by type";
   $val=mysqli_query($link,$sql);
   while($arr=mysqli_fetch_row($val)){
      echo "<tr height='30'>";
      echo "<td align='center' bgcolor='#FFFFFF'>".$arr[0]."</td>";
      echo "<td align='center' bgcolor='#FFFFFF'>本类目共有:".$arr[1]."&nbsp;种</td>";
      echo "</tr>";
   }
   ?>
</table>
</body>
</html>

這樣,我們的完整的簡單圖書後台管理系統就基本完成了,希望透過完成這個系統

對大家的PHP學習有一定的幫助。

註解:本教學程式碼僅供朋友學習與參考,不可用於專案!

#
<?php include("config.php"); require_once('ly_check.php'); ?> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>图书统计</title> <link rel="stylesheet" href="css.css" type="text/css"> </head> <body> <table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC" class="table"> <tr> <td height="27" colspan="2" align="left" bgcolor="#FFFFFF" class="bg_tr"> 后台管理 >> 图书统计</td> </tr> <tr> <td align="center" bgcolor="#FFFFFF" height="27">图书类别</td> <td align="center" bgcolor="#FFFFFF">库内图书</td> </tr> <?php $sql="select type, count(*) from yx_books group by type"; $val=mysqli_query($link,$sql); while($arr=mysqli_fetch_row($val)){ echo "<tr height='30'>"; echo "<td align='center' bgcolor='#FFFFFF'>".$arr[0]."</td>"; echo "<td align='center' bgcolor='#FFFFFF'>本类目共有:".$arr[1]." 种</td>"; echo "</tr>"; } ?> </table> </body> </html>
章節課件