IP.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. <?php
  2. include "conn.php";
  3. checkLogin("信息管理");
  4. // Move all header-modifying operations to the top
  5. $act = $_GET['act'] ?? '';
  6. if ($act == "save") {
  7. $isedit = false;
  8. $id = $_POST['id'] ?? '';
  9. if ($id != "" && is_numeric($id)) {
  10. $isedit = true;
  11. }
  12. $IPAddress = textEncode($_POST['IPAddress']);
  13. if ($isedit) {
  14. $sql = "SELECT * FROM allowip WHERE id = ?";
  15. $stmt = $conn->prepare($sql);
  16. $stmt->bind_param("i", $id);
  17. $stmt->execute();
  18. $result = $stmt->get_result();
  19. if ($result->num_rows > 0) {
  20. $sql = "UPDATE allowip SET IPAddress = ? WHERE id = ?";
  21. $stmt = $conn->prepare($sql);
  22. $stmt->bind_param("si", $IPAddress, $id);
  23. $stmt->execute();
  24. } else {
  25. $sql = "INSERT INTO allowip (IPAddress) VALUES (?)";
  26. $stmt = $conn->prepare($sql);
  27. $stmt->bind_param("s", $IPAddress);
  28. $stmt->execute();
  29. }
  30. $page = $_GET['Page'] ?? '';
  31. $keys = urlencode($_GET['Keys'] ?? '');
  32. $ord = urlencode($_GET['Ord'] ?? '');
  33. header("Location: ?keys=$keys&Ord=$ord&Page=$page");
  34. exit;
  35. } else {
  36. $sql = "INSERT INTO allowip (IPAddress) VALUES (?)";
  37. $stmt = $conn->prepare($sql);
  38. $stmt->bind_param("s", $IPAddress);
  39. $stmt->execute();
  40. header("Location: ?");
  41. exit;
  42. }
  43. }
  44. if ($act == "postchk") {
  45. $keys = urlencode($_GET['Keys'] ?? '');
  46. $ord = urlencode($_GET['Ord'] ?? '');
  47. $page = $_GET['Page'] ?? '';
  48. if (isset($_POST['chkbox']) && is_array($_POST['chkbox'])) {
  49. $ids = array_map('intval', $_POST['chkbox']);
  50. $sql = "DELETE FROM allowip WHERE id IN (" . implode(',', array_fill(0, count($ids), '?')) . ")";
  51. $types = str_repeat('i', count($ids));
  52. $stmt = $conn->prepare($sql);
  53. $stmt->bind_param($types, ...$ids);
  54. $stmt->execute();
  55. }
  56. header("Location: ?Keys=$keys&Ord=$ord&Page=$page");
  57. exit;
  58. }
  59. ?>
  60. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  61. <html xmlns="http://www.w3.org/1999/xhtml">
  62. <head>
  63. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  64. <title>管理区域</title>
  65. <link rel="stylesheet" href="css/common.css" type="text/css" />
  66. <link rel="stylesheet" href="css/jquery.galpop.css" type="text/css" />
  67. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  68. <script type="text/javascript" src="js/js.js"></script>
  69. <script type="text/javascript" src="js/jquery.galpop.min.js"></script>
  70. </head>
  71. <body>
  72. <div id="man_zone">
  73. <?php
  74. if ($act == "add" || $act == "edit") {
  75. $id = $_GET['id'] ?? '';
  76. $isedit = false;
  77. $IPAddress = '';
  78. if ($id != "" && is_numeric($id)) {
  79. $isedit = true;
  80. $sql = "SELECT * FROM allowip WHERE id = ?";
  81. $stmt = $conn->prepare($sql);
  82. $stmt->bind_param("i", $id);
  83. $stmt->execute();
  84. $result = $stmt->get_result();
  85. if ($row = $result->fetch_assoc()) {
  86. $IPAddress = textUncode($row['IPAddress']);
  87. } else {
  88. $isedit = false;
  89. }
  90. }
  91. $page = $_GET['Page'] ?? '';
  92. $keys = urlencode($_GET['Keys'] ?? '');
  93. $ord = urlencode($_GET['Ord'] ?? '');
  94. $hrefstr = "?keys=$keys&Ord=$ord&Page=$page";
  95. ?>
  96. <form name="form1" method="post" action="<?php echo $hrefstr; ?>&act=save">
  97. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  98. <tbody>
  99. <tr>
  100. <th width="8%">IP</th>
  101. <td><input type="text" id="IPAddress" name="IPAddress" value="<?php echo $IPAddress; ?>" class="txt1" /><input type="hidden" name="id" value="<?php echo $id; ?>" /></td>
  102. </tr>
  103. <tr>
  104. <th></th>
  105. <td><input type="submit" name="save" id="save" value="确定" class="btn1" /> <input type="reset" name="save" id="save" value="重置" class="btn1" /> <input type="button" value="返回" class="btn1" onClick="location.href='<?php echo $hrefstr; ?>'" /></td>
  106. </tr>
  107. </tbody>
  108. </table>
  109. </form>
  110. </div>
  111. </body>
  112. </html>
  113. <?php
  114. exit;
  115. }
  116. $keys = $_GET['Keys'] ?? '';
  117. $keyscode = textEncode($keys);
  118. $ord = $_GET['Ord'] ?? '';
  119. $page = $_GET['Page'] ?? '';
  120. // Get total count first
  121. $sql = "SELECT COUNT(*) as total FROM allowip WHERE IPAddress LIKE ?";
  122. $stmt = $conn->prepare($sql);
  123. $search = '%' . $keyscode . '%';
  124. $stmt->bind_param("s", $search);
  125. $stmt->execute();
  126. $result = $stmt->get_result();
  127. $row = $result->fetch_assoc();
  128. $total_records = $row['total'];
  129. // Pagination settings
  130. $records_per_page = 10;
  131. $total_pages = ceil($total_records / $records_per_page);
  132. if ($page == "") $page = 1;
  133. if ($page == "end") $page = $total_pages;
  134. if (!is_numeric($page) || $page < 1) $page = 1;
  135. $page = (int)$page;
  136. if ($page > $total_pages) $page = $total_pages;
  137. $start = ($page - 1) * $records_per_page;
  138. // Get paginated results
  139. $sql = "SELECT * FROM allowip WHERE IPAddress LIKE ? ORDER BY id DESC LIMIT ?, ?";
  140. $stmt = $conn->prepare($sql);
  141. $stmt->bind_param("sii", $search, $start, $records_per_page);
  142. $stmt->execute();
  143. $results = $stmt->get_result();
  144. $keys = urlencode($keys);
  145. $ord = urlencode($ord);
  146. $hrefstr = "?keys=$keys";
  147. ?>
  148. <form id="form1" method="post" action="?act=postchk&Keys=<?php echo $keys; ?>&Ord=<?php echo $ord; ?>&Page=<?php echo $page; ?>" onSubmit="return false">
  149. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  150. <thead>
  151. <tr>
  152. <th width="4%"><input type="checkbox" name="chkall" id="chkall" onClick="chkboxall(this,'chkbox')" /></th>
  153. <th width="6%">序号</th>
  154. <th width="60%">IP</th>
  155. <th width="30%">操作</th>
  156. </tr>
  157. </thead>
  158. <tbody>
  159. <?php
  160. if ($results->num_rows > 0) {
  161. $tempNum = ($page - 1) * $records_per_page;
  162. while ($row = $results->fetch_assoc()) {
  163. $tempNum++;
  164. ?>
  165. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  166. <td align="center"><input type="checkbox" name="chkbox[]" value="<?php echo $row['id']; ?>" /></td>
  167. <td align="center"><?php echo $tempNum; ?></td>
  168. <td align="center"><?php echo $row['IPAddress']; ?></td>
  169. <td align="center"><a href="?Keys=<?php echo $keys; ?>&Ord=<?php echo $ord; ?>&Page=<?php echo $page; ?>&act=edit&id=<?php echo $row['id']; ?>" class="ico_edit ico">修改</a></td>
  170. </tr>
  171. <?php
  172. }
  173. } else {
  174. if ($keys == "") {
  175. ?>
  176. <tr>
  177. <td align="center" colspan="4">Sorry,当前暂无信息</td>
  178. </tr>
  179. <?php
  180. } else {
  181. ?>
  182. <tr>
  183. <td align="center" colspan="4"><a href="?">Sorry,没有找到"<?php echo $keyscode; ?>"相关的信息,点击返回</a></td>
  184. </tr>
  185. <?php
  186. }
  187. }
  188. ?>
  189. </tbody>
  190. <tfoot>
  191. <tr>
  192. <td colspan="5">
  193. <div class="showpagebox">
  194. <?php
  195. if ($total_pages > 1) {
  196. $pageName = "?Keys=$keys&Ord=$ord&";
  197. $pagelen = 3;
  198. if ($page > 1) {
  199. echo "<a href=\"{$pageName}Page=1\">首页</a>";
  200. echo "<a href=\"{$pageName}Page=" . ($page-1) . "\">上一页</a>";
  201. }
  202. if ($pagelen * 2 + 1 >= $total_pages) {
  203. $startPage = 1;
  204. $endPage = $total_pages;
  205. } else {
  206. if ($page <= $pagelen + 1) {
  207. $startPage = 1;
  208. $endPage = $pagelen * 2 + 1;
  209. } else {
  210. $startPage = $page - $pagelen;
  211. $endPage = $page + $pagelen;
  212. }
  213. if ($page + $pagelen > $total_pages) {
  214. $startPage = $total_pages - $pagelen * 2;
  215. $endPage = $total_pages;
  216. }
  217. }
  218. for ($i = $startPage; $i <= $endPage; $i++) {
  219. if ($i == $page) {
  220. echo "<a class=\"current\">$i</a>";
  221. } else {
  222. echo "<a href=\"{$pageName}Page=$i\">$i</a>";
  223. }
  224. }
  225. if ($page < $total_pages) {
  226. if ($total_pages - $page > $pagelen) {
  227. echo "<a href=\"{$pageName}Page=$total_pages\">...$total_pages</a>";
  228. }
  229. echo "<a href=\"{$pageName}Page=" . ($page+1) . "\">下一页</a>";
  230. echo "<a href=\"{$pageName}Page=$total_pages\">尾页</a>";
  231. }
  232. echo "<input type=\"text\" id=\"Pagego\" value=\"$page\" onFocus=\"if(this.value == '$page'){this.value='';};\" onBlur=\"if(this.value == ''){this.value='$page';}\" onKeyUp=\"this.value=this.value.replace(/\D/g,'')\" onKeyDown=\"if(event.keyCode==13){location.href='{$pageName}Page='+document.getElementById('Pagego').value}\" />";
  233. }
  234. ?>
  235. </div>
  236. <div class="searchbox">
  237. <input type="text" id="keys" value="<?php echo ($keyscode == "") ? "请输入搜索关键词" : $keyscode; ?>"
  238. onFocus="if(this.value == '<?php echo ($keyscode == "") ? "请输入搜索关键词" : $keyscode; ?>'){this.value='';}"
  239. onBlur="if(this.value == ''){this.value='<?php echo ($keyscode == "") ? "请输入搜索关键词" : $keyscode; ?>';}"
  240. onKeyDown="if(event.keyCode==13){location.href='?Keys='+encodeURIComponent(document.getElementById('keys').value)}" />
  241. <input type="button" id="searchgo" value="go" onClick="location.href='?Keys='+encodeURIComponent(document.getElementById('keys').value)" />
  242. </div>
  243. <div class="postchkbox">
  244. <select id="chkact" name="chkact">
  245. <option value="1">请选择</option>
  246. <option value="-1">删除</option>
  247. </select>
  248. <input type="button" value="执行" onClick="postchk(1)" class="btn1" />
  249. <input type="button" value="新增" onClick="location.href='?act=add'" class="btn1" />
  250. </div>
  251. </td>
  252. </tr>
  253. </tfoot>
  254. </table>
  255. </form>
  256. </div>
  257. </body>
  258. </html>