qudao.php 10 KB

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