log.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <?php
  2. include "conn.php";
  3. checkLogin("信息管理");
  4. ?>
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  9. <title>管理区域</title>
  10. <link rel="stylesheet" href="css/common.css" type="text/css" />
  11. <link rel="stylesheet" href="css/jquery.galpop.css" type="text/css" />
  12. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  13. <script type="text/javascript" src="js/js.js"></script>
  14. <script type="text/javascript" src="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  15. <script type="text/javascript" src="js/jquery.galpop.min.js"></script>
  16. </head>
  17. <body>
  18. <div id="man_zone">
  19. <?php
  20. $page = $_GET['Page'] ?? '';
  21. $keys = urlencode($_GET['Keys'] ?? '');
  22. $keyscode = textEncode($_GET['Keys'] ?? '');
  23. $sql = "SELECT * FROM logRecord WHERE loginAct LIKE ? ORDER BY id DESC";
  24. $stmt = $conn->prepare($sql);
  25. $stmt->execute(['%' . $keyscode . '%']);
  26. $results = $stmt->fetchAll(PDO::FETCH_ASSOC);
  27. $records_per_page = 20;
  28. $total_records = count($results);
  29. $total_pages = ceil($total_records / $records_per_page);
  30. if ($page == "") $page = 1;
  31. if ($page == "end") $page = $total_pages;
  32. if (!is_numeric($page) || $page < 1) $page = 1;
  33. $page = (int)$page;
  34. if ($page > $total_pages) $page = $total_pages;
  35. $start = ($page - 1) * $records_per_page;
  36. $results = array_slice($results, $start, $records_per_page);
  37. ?>
  38. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  39. <thead>
  40. <tr>
  41. <th width="10%">序号</th>
  42. <th width="20%">时间</th>
  43. <th width="70%">日志</th>
  44. </tr>
  45. </thead>
  46. <tbody>
  47. <?php
  48. if (!empty($results)) {
  49. $tempNum = ($page - 1) * $records_per_page;
  50. foreach ($results as $row) {
  51. $tempNum++;
  52. ?>
  53. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  54. <td align="center"><?php echo $tempNum; ?></td>
  55. <td align="center"><?php echo $row['loginTime']; ?></td>
  56. <td align="center"><?php echo $row['loginAct']; ?></td>
  57. </tr>
  58. <?php
  59. }
  60. } else {
  61. ?>
  62. <tr>
  63. <td colspan="4">暂无相关记录</td>
  64. </tr>
  65. <?php
  66. }
  67. ?>
  68. </tbody>
  69. <tfoot>
  70. <tr>
  71. <td colspan="4">
  72. <div class="showpagebox">
  73. <?php
  74. if ($total_pages > 1) {
  75. $pageName = "?Keys=$keys&Ord=&";
  76. $pagelen = 3;
  77. if ($page > 1) {
  78. echo "<a href=\"{$pageName}Page=1\">首页</a>";
  79. echo "<a href=\"{$pageName}Page=" . ($page-1) . "\">上一页</a>";
  80. }
  81. if ($pagelen * 2 + 1 >= $total_pages) {
  82. $startPage = 1;
  83. $endPage = $total_pages;
  84. } else {
  85. if ($page <= $pagelen + 1) {
  86. $startPage = 1;
  87. $endPage = $pagelen * 2 + 1;
  88. } else {
  89. $startPage = $page - $pagelen;
  90. $endPage = $page + $pagelen;
  91. }
  92. if ($page + $pagelen > $total_pages) {
  93. $startPage = $total_pages - $pagelen * 2;
  94. $endPage = $total_pages;
  95. }
  96. }
  97. for ($i = $startPage; $i <= $endPage; $i++) {
  98. if ($i == $page) {
  99. echo "<a class=\"current\">$i</a>";
  100. } else {
  101. echo "<a href=\"{$pageName}Page=$i\">$i</a>";
  102. }
  103. }
  104. if ($page < $total_pages) {
  105. if ($total_pages - $page > $pagelen) {
  106. echo "<a href=\"{$pageName}Page=$total_pages\">...$total_pages</a>";
  107. }
  108. echo "<a href=\"{$pageName}Page=" . ($page+1) . "\">下一页</a>";
  109. echo "<a href=\"{$pageName}Page=$total_pages\">尾页</a>";
  110. }
  111. }
  112. ?>
  113. </div>
  114. <div class="searchbox">
  115. <input type="text" id="keys" class="inputTxt"
  116. value="<?php echo ($keyscode == "") ? "请输入搜索关键词" : $keyscode; ?>"
  117. onFocus="if(this.value == '<?php echo ($keyscode == "") ? "请输入搜索关键词" : $keyscode; ?>'){this.value='';}"
  118. onBlur="if(this.value == ''){this.value='<?php echo ($keyscode == "") ? "请输入搜索关键词" : $keyscode; ?>';}"
  119. onKeyDown="if(event.keyCode==13){location.href='?Keys='+escape(document.getElementById('keys').value)+'&Page=<?php echo $page; ?>'}" />
  120. <input type="button" id="searchgo" class="searchgo" value="go"
  121. onClick="location.href='?Keys='+escape(document.getElementById('keys').value)+'&Page=<?php echo $page; ?>'" />
  122. </div>
  123. </td>
  124. </tr>
  125. </tfoot>
  126. </table>
  127. </div>
  128. </body>
  129. </html>