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>
코스웨어