IP.php 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  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="js/jquery.galpop.min.js"></script>
  15. </head>
  16. <body>
  17. <div id="man_zone">
  18. <?php
  19. $act = $_GET['act'] ?? '';
  20. if ($act == "save") {
  21. $isedit = false;
  22. $id = $_POST['id'] ?? '';
  23. if ($id != "" && is_numeric($id)) {
  24. $isedit = true;
  25. }
  26. $IPAddress = textEncode($_POST['IPAddress']);
  27. if ($isedit) {
  28. $sql = "SELECT * FROM allowIp WHERE id = ?";
  29. $stmt = $conn->prepare($sql);
  30. $stmt->execute([$id]);
  31. if ($stmt->rowCount() > 0) {
  32. $sql = "UPDATE allowIp SET IPAddress = ? WHERE id = ?";
  33. $stmt = $conn->prepare($sql);
  34. $stmt->execute([$IPAddress, $id]);
  35. } else {
  36. $sql = "INSERT INTO allowIp (IPAddress) VALUES (?)";
  37. $stmt = $conn->prepare($sql);
  38. $stmt->execute([$IPAddress]);
  39. }
  40. $page = $_GET['Page'] ?? '';
  41. $keys = urlencode($_GET['Keys'] ?? '');
  42. $ord = urlencode($_GET['Ord'] ?? '');
  43. header("Location: ?keys=$keys&Ord=$ord&Page=$page");
  44. exit;
  45. } else {
  46. $sql = "INSERT INTO allowIp (IPAddress) VALUES (?)";
  47. $stmt = $conn->prepare($sql);
  48. $stmt->execute([$IPAddress]);
  49. header("Location: ?");
  50. exit;
  51. }
  52. }
  53. if ($act == "add" || $act == "edit") {
  54. $id = $_GET['id'] ?? '';
  55. $isedit = false;
  56. $IPAddress = '';
  57. if ($id != "" && is_numeric($id)) {
  58. $isedit = true;
  59. $sql = "SELECT * FROM allowIp WHERE id = ?";
  60. $stmt = $conn->prepare($sql);
  61. $stmt->execute([$id]);
  62. if ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
  63. $IPAddress = textUncode($row['IPAddress']);
  64. } else {
  65. $isedit = false;
  66. }
  67. }
  68. $page = $_GET['Page'] ?? '';
  69. $keys = urlencode($_GET['Keys'] ?? '');
  70. $ord = urlencode($_GET['Ord'] ?? '');
  71. $hrefstr = "?keys=$keys&Ord=$ord&Page=$page";
  72. ?>
  73. <form name="form1" method="post" action="<?php echo $hrefstr; ?>&act=save">
  74. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  75. <tbody>
  76. <tr>
  77. <th width="8%">IP</th>
  78. <td><input type="text" id="IPAddress" name="IPAddress" value="<?php echo $IPAddress; ?>" class="txt1" /><input type="hidden" name="id" value="<?php echo $id; ?>" /></td>
  79. </tr>
  80. <tr>
  81. <th></th>
  82. <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>
  83. </tr>
  84. </tbody>
  85. </table>
  86. </form>
  87. </div>
  88. </body>
  89. </html>
  90. <?php
  91. exit;
  92. }
  93. if ($act == "postchk") {
  94. $keys = urlencode($_GET['Keys'] ?? '');
  95. $ord = urlencode($_GET['Ord'] ?? '');
  96. $page = $_GET['Page'] ?? '';
  97. if (isset($_POST['chkbox']) && is_array($_POST['chkbox'])) {
  98. $ids = array_map('intval', $_POST['chkbox']);
  99. $sql = "DELETE FROM allowIp WHERE id IN (" . implode(',', array_fill(0, count($ids), '?')) . ")";
  100. $stmt = $conn->prepare($sql);
  101. $stmt->execute($ids);
  102. }
  103. header("Location: ?Keys=$keys&Ord=$ord&Page=$page");
  104. exit;
  105. }
  106. $keys = $_GET['Keys'] ?? '';
  107. $keyscode = textEncode($keys);
  108. $ord = $_GET['Ord'] ?? '';
  109. $page = $_GET['Page'] ?? '';
  110. $sql = "SELECT * FROM allowIp WHERE IPAddress LIKE ? ORDER BY id DESC";
  111. $stmt = $conn->prepare($sql);
  112. $stmt->execute(['%' . $keyscode . '%']);
  113. $results = $stmt->fetchAll(PDO::FETCH_ASSOC);
  114. $total_records = count($results);
  115. $records_per_page = 10;
  116. $total_pages = ceil($total_records / $records_per_page);
  117. if ($page == "") $page = 1;
  118. if ($page == "end") $page = $total_pages;
  119. if (!is_numeric($page) || $page < 1) $page = 1;
  120. $page = (int)$page;
  121. if ($page > $total_pages) $page = $total_pages;
  122. $start = ($page - 1) * $records_per_page;
  123. $results = array_slice($results, $start, $records_per_page);
  124. $keys = urlencode($keys);
  125. $ord = urlencode($ord);
  126. $hrefstr = "?keys=$keys";
  127. ?>
  128. <form id="form1" method="post" action="?act=postchk&Keys=<?php echo $keys; ?>&Ord=<?php echo $ord; ?>&Page=<?php echo $page; ?>" onSubmit="return false">
  129. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  130. <thead>
  131. <tr>
  132. <th width="4%"><input type="checkbox" name="chkall" id="chkall" onClick="chkboxall(this,'chkbox')" /></th>
  133. <th width="6%">序号</th>
  134. <th width="60%">IP</th>
  135. <th width="30%">操作</th>
  136. </tr>
  137. </thead>
  138. <tbody>
  139. <?php
  140. if (!empty($results)) {
  141. $tempNum = ($page - 1) * $records_per_page;
  142. foreach ($results as $row) {
  143. $tempNum++;
  144. ?>
  145. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  146. <td align="center"><input type="checkbox" name="chkbox[]" value="<?php echo $row['id']; ?>" /></td>
  147. <td align="center"><?php echo $tempNum; ?></td>
  148. <td align="center"><?php echo $row['IPAddress']; ?></td>
  149. <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>
  150. </tr>
  151. <?php
  152. }
  153. } else {
  154. if ($keys == "") {
  155. ?>
  156. <tr>
  157. <td align="center" colspan="4">Sorry,当前暂无信息</td>
  158. </tr>
  159. <?php
  160. } else {
  161. ?>
  162. <tr>
  163. <td align="center" colspan="4"><a href="?">Sorry,没有找到"<?php echo $keyscode; ?>"相关的信息,点击返回</a></td>
  164. </tr>
  165. <?php
  166. }
  167. }
  168. ?>
  169. </tbody>
  170. <tfoot>
  171. <tr>
  172. <td colspan="5">
  173. <div class="showpagebox">
  174. <?php
  175. if ($total_pages > 1) {
  176. $pageName = "?Keys=$keys&Ord=$ord&";
  177. $pagelen = 3;
  178. if ($page > 1) {
  179. echo "<a href=\"{$pageName}Page=1\">首页</a>";
  180. echo "<a href=\"{$pageName}Page=" . ($page-1) . "\">上一页</a>";
  181. }
  182. if ($pagelen * 2 + 1 >= $total_pages) {
  183. $startPage = 1;
  184. $endPage = $total_pages;
  185. } else {
  186. if ($page <= $pagelen + 1) {
  187. $startPage = 1;
  188. $endPage = $pagelen * 2 + 1;
  189. } else {
  190. $startPage = $page - $pagelen;
  191. $endPage = $page + $pagelen;
  192. }
  193. if ($page + $pagelen > $total_pages) {
  194. $startPage = $total_pages - $pagelen * 2;
  195. $endPage = $total_pages;
  196. }
  197. }
  198. for ($i = $startPage; $i <= $endPage; $i++) {
  199. if ($i == $page) {
  200. echo "<a class=\"current\">$i</a>";
  201. } else {
  202. echo "<a href=\"{$pageName}Page=$i\">$i</a>";
  203. }
  204. }
  205. if ($page < $total_pages) {
  206. if ($total_pages - $page > $pagelen) {
  207. echo "<a href=\"{$pageName}Page=$total_pages\">...$total_pages</a>";
  208. }
  209. echo "<a href=\"{$pageName}Page=" . ($page+1) . "\">下一页</a>";
  210. echo "<a href=\"{$pageName}Page=$total_pages\">尾页</a>";
  211. }
  212. 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}\" />";
  213. }
  214. ?>
  215. </div>
  216. <div class="searchbox">
  217. <input type="text" id="keys" value="<?php echo ($keyscode == "") ? "请输入搜索关键词" : $keyscode; ?>"
  218. onFocus="if(this.value == '<?php echo ($keyscode == "") ? "请输入搜索关键词" : $keyscode; ?>'){this.value='';}"
  219. onBlur="if(this.value == ''){this.value='<?php echo ($keyscode == "") ? "请输入搜索关键词" : $keyscode; ?>';}"
  220. onKeyDown="if(event.keyCode==13){location.href='?Keys='+escape(document.getElementById('keys').value)}" />
  221. <input type="button" id="searchgo" value="go" onClick="location.href='?Keys='+escape(document.getElementById('keys').value)" />
  222. </div>
  223. <div class="postchkbox">
  224. <select id="chkact" name="chkact">
  225. <option value="1">请选择</option>
  226. <option value="-1">删除</option>
  227. </select>
  228. <input type="button" value="执行" onClick="postchk(1)" class="btn1" />
  229. <input type="button" value="新增" onClick="location.href='?act=add'" class="btn1" />
  230. </div>
  231. </td>
  232. </tr>
  233. </tfoot>
  234. </table>
  235. </form>
  236. </div>
  237. </body>
  238. </html>