log.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <?php
  2. require_once('conn.php');
  3. // Check login status (assuming you have a similar function in PHP)
  4. checkLogin("信息管理");
  5. // Initialize variables to avoid undefined warnings
  6. $page = isset($_GET['Page']) ? $_GET['Page'] : 1;
  7. $keys = isset($_GET['Keys']) ? urlencode($_GET['Keys']) : '';
  8. $keyscode = isset($_GET['Keys']) ? htmlspecialcharsFix($_GET['Keys']) : '';
  9. // Prepare the SQL query with proper escaping
  10. $search_term = mysqli_real_escape_string($conn, $keyscode);
  11. $sql = "SELECT * FROM logrecord WHERE loginAct LIKE '%$search_term%' ORDER BY id DESC";
  12. $result = mysqli_query($conn, $sql);
  13. // Get total records for pagination
  14. $total_records = mysqli_num_rows($result);
  15. $records_per_page = 20;
  16. $total_pages = ceil($total_records / $records_per_page);
  17. // Validate page number
  18. if ($page === 'end') {
  19. $page = $total_pages;
  20. }
  21. if (!is_numeric($page) || $page < 1) {
  22. $page = 1;
  23. }
  24. if ($page > $total_pages) {
  25. $page = $total_pages;
  26. }
  27. // Calculate offset for pagination
  28. $offset = ($page - 1) * $records_per_page;
  29. $sql .= " LIMIT $offset, $records_per_page";
  30. $result = mysqli_query($conn, $sql);
  31. ?>
  32. <!DOCTYPE html>
  33. <html xmlns="http://www.w3.org/1999/xhtml">
  34. <head>
  35. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  36. <title>管理区域</title>
  37. <link rel="stylesheet" href="css/common.css" type="text/css" />
  38. <link rel="stylesheet" href="css/jquery.galpop.css" type="text/css" />
  39. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  40. <script type="text/javascript" src="js/js.js"></script>
  41. <script type="text/javascript" src="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  42. <script type="text/javascript" src="js/jquery.galpop.min.js"></script>
  43. </head>
  44. <body>
  45. <div id="man_zone">
  46. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  47. <thead>
  48. <tr>
  49. <th width="10%">序号</th>
  50. <th width="20%">时间</th>
  51. <th width="70%">日志</th>
  52. </tr>
  53. </thead>
  54. <tbody>
  55. <?php
  56. if (mysqli_num_rows($result) > 0) {
  57. $temp_num = $offset;
  58. while ($row = mysqli_fetch_assoc($result)) {
  59. $temp_num++;
  60. ?>
  61. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  62. <td align="center"><?php echo $temp_num; ?></td>
  63. <td align="center"><?php echo htmlspecialcharsFix($row['loginTime']); ?></td>
  64. <td align="center"><?php echo htmlspecialcharsFix($row['loginAct']); ?></td>
  65. </tr>
  66. <?php
  67. }
  68. } else {
  69. ?>
  70. <tr>
  71. <td colspan="4">暂无相关记录</td>
  72. </tr>
  73. <?php
  74. }
  75. ?>
  76. </tbody>
  77. <tfoot>
  78. <tr>
  79. <td colspan="4">
  80. <div class="showpagebox">
  81. <?php
  82. if ($total_pages > 1) {
  83. $page_name = "?Keys=" . $keys . "&";
  84. $page_len = 3;
  85. // Previous page links
  86. if ($page > 1) {
  87. echo "<a href=\"{$page_name}Page=1\">首页</a>";
  88. echo "<a href=\"{$page_name}Page=" . ($page - 1) . "\">上一页</a>";
  89. }
  90. // Calculate page range
  91. if ($page_len * 2 + 1 >= $total_pages) {
  92. $start_page = 1;
  93. $end_page = $total_pages;
  94. } else {
  95. if ($page <= $page_len + 1) {
  96. $start_page = 1;
  97. $end_page = $page_len * 2 + 1;
  98. } else {
  99. $start_page = $page - $page_len;
  100. $end_page = $page + $page_len;
  101. }
  102. if ($page + $page_len > $total_pages) {
  103. $start_page = $total_pages - $page_len * 2;
  104. $end_page = $total_pages;
  105. }
  106. }
  107. // Page numbers
  108. for ($i = $start_page; $i <= $end_page; $i++) {
  109. if ($i == $page) {
  110. echo "<a class=\"current\">{$i}</a>";
  111. } else {
  112. echo "<a href=\"{$page_name}Page={$i}\">{$i}</a>";
  113. }
  114. }
  115. // Next page links
  116. if ($page < $total_pages) {
  117. if ($total_pages - $page > $page_len) {
  118. echo "<a href=\"{$page_name}Page={$total_pages}\">...{$total_pages}</a>";
  119. }
  120. echo "<a href=\"{$page_name}Page=" . ($page + 1) . "\">下一页</a>";
  121. echo "<a href=\"{$page_name}Page={$total_pages}\">尾页</a>";
  122. }
  123. }
  124. ?>
  125. </div>
  126. <div class="searchbox">
  127. <input type="text" id="keys" class="inputTxt"
  128. value="<?php echo empty($keyscode) ? '请输入搜索关键词' : htmlspecialcharsFix($keyscode); ?>"
  129. onFocus="if(this.value == '<?php echo empty($keyscode) ? '请输入搜索关键词' : htmlspecialcharsFix($keyscode); ?>'){this.value='';}"
  130. onBlur="if(this.value == ''){this.value='<?php echo empty($keyscode) ? '请输入搜索关键词' : htmlspecialcharsFix($keyscode); ?>';}"
  131. onKeyDown="if(event.keyCode==13){location.href='?Keys='+escape(document.getElementById('keys').value)+'&Page=<?php echo $page; ?>'}" />
  132. <input type="button" id="searchgo" class="searchgo" value="go"
  133. onClick="location.href='?Keys='+escape(document.getElementById('keys').value)+'&Page=<?php echo $page; ?>'" />
  134. </div>
  135. </td>
  136. </tr>
  137. </tfoot>
  138. </table>
  139. </div>
  140. <?php mysqli_close($conn); ?>
  141. </body>
  142. </html>