additional.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin("信息管理");
  4. $qid = $_GET['qid'] ?? '';
  5. // Check qid and redirect if invalid - do this before any output
  6. if (empty($qid) || !is_numeric($qid)) {
  7. $conn->close();
  8. header("Location: /");
  9. exit;
  10. }
  11. // Now start HTML output
  12. ?>
  13. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  14. <html xmlns="http://www.w3.org/1999/xhtml">
  15. <head>
  16. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  17. <title>管理区域</title>
  18. <link rel="stylesheet" href="css/common.css" type="text/css" />
  19. <link rel="stylesheet" href="css/jquery.galpop.css" type="text/css" />
  20. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  21. <script type="text/javascript" src="js/js.js"></script>
  22. <script type="text/javascript" src="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  23. </head>
  24. <body>
  25. <div id="man_zone" style="margin:0">
  26. <?php
  27. $Keys = $_GET['Keys'] ?? '';
  28. $Keyscode = textEncode($Keys);
  29. $Ord = $_GET['Ord'] ?? '';
  30. $Page = $_GET['Page'] ?? '';
  31. $OrdStr = !empty($Ord) ? $Ord . "," : "";
  32. // Get product IDs for this question
  33. $result = $conn->query("SELECT productId FROM productFAQ WHERE questionId=" . (int)$qid);
  34. $productStr = ",";
  35. while ($row = $result->fetch_assoc()) {
  36. $productStr .= $row['productId'] . ",";
  37. }
  38. // Get products
  39. $sql = "SELECT id, productName, productPic, productAddtime FROM product
  40. WHERE productName LIKE '%" . $conn->real_escape_string($Keyscode) . "%'
  41. ORDER BY productAddtime DESC";
  42. $result = $conn->query($sql);
  43. $Keys = urlencode($Keys);
  44. $Ord = urlencode($Ord);
  45. $hrefstr = "?keys=" . $Keys;
  46. ?>
  47. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  48. <thead>
  49. <tr>
  50. <th width="4%"></th>
  51. <th width="6%">序号</th>
  52. <th width="30%">产品名称</th>
  53. <th width="30%">图片</th>
  54. <th width="20%">添加时间</th>
  55. </tr>
  56. </thead>
  57. <tbody>
  58. <?php
  59. if ($result->num_rows > 0) {
  60. $pageSize = 7;
  61. $totalRows = $result->num_rows;
  62. $totalPages = ceil($totalRows / $pageSize);
  63. if ($Page == "") $Page = 1;
  64. if ($Page == "end") $Page = $totalPages;
  65. if (!is_numeric($Page) || $Page < 1) $Page = 1;
  66. $Page = (int)$Page;
  67. if ($Page > $totalPages) $Page = $totalPages;
  68. $offset = $pageSize * ($Page - 1);
  69. $sql .= " LIMIT $offset, $pageSize";
  70. $result = $conn->query($sql);
  71. $TempNum = $offset;
  72. while ($row = $result->fetch_assoc()) {
  73. $TempNum++;
  74. $checked = strpos($productStr, "," . $row['id'] . ",") !== false ? ' checked="checked"' : '';
  75. ?>
  76. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  77. <td align="center"><input type="checkbox"<?php echo $checked; ?> name="chkbox" class="relatedProducts" onChange="relatedProducts(<?php echo $qid; ?>,<?php echo $row['id']; ?>)" /></td>
  78. <td align="center"><?php echo $TempNum; ?></td>
  79. <td align="center"><?php echo $row['productName']; ?></td>
  80. <td align="center"><img src="<?php echo $row['productPic']; ?>" height="60px"></td>
  81. <td align="center"><?php echo $row['productAddtime']; ?></td>
  82. </tr>
  83. <?php
  84. }
  85. } else {
  86. if (empty($Keys)) {
  87. ?>
  88. <tr>
  89. <td align="center" colspan="8">Sorry,当前暂无信息</td>
  90. </tr>
  91. <?php
  92. } else {
  93. ?>
  94. <tr>
  95. <td align="center" colspan="8"><a href="?">Sorry,没有找到"<?php echo $Keyscode; ?>"相关的信息,点击返回</a></td>
  96. </tr>
  97. <?php
  98. }
  99. }
  100. ?>
  101. </tbody>
  102. <tfoot>
  103. <tr>
  104. <td colspan="8">
  105. <div class="showpagebox">
  106. <?php
  107. if ($totalPages > 1) {
  108. $PageName = "?qid={$qid}&Keys={$Keys}&Ord={$Ord}&";
  109. $Pagelen = 3;
  110. if ($Page > 1) {
  111. echo "<a href=\"{$PageName}Page=1\">首页</a>";
  112. echo "<a href=\"{$PageName}Page=" . ($Page-1) . "\">上一页</a>";
  113. }
  114. if ($Pagelen * 2 + 1 >= $totalPages) {
  115. $StartPage = 1;
  116. $EndPage = $totalPages;
  117. } else {
  118. if ($Page <= $Pagelen + 1) {
  119. $StartPage = 1;
  120. $EndPage = $Pagelen * 2 + 1;
  121. } else {
  122. $StartPage = $Page - $Pagelen;
  123. $EndPage = $Page + $Pagelen;
  124. }
  125. if ($Page + $Pagelen > $totalPages) {
  126. $StartPage = $totalPages - $Pagelen * 2;
  127. $EndPage = $totalPages;
  128. }
  129. }
  130. for ($i = $StartPage; $i <= $EndPage; $i++) {
  131. if ($i == $Page) {
  132. echo "<a class=\"current\">{$i}</a>";
  133. } else {
  134. echo "<a href=\"{$PageName}Page={$i}\">{$i}</a>";
  135. }
  136. }
  137. if ($Page < $totalPages) {
  138. if ($totalPages - $Page > $Pagelen) {
  139. echo "<a href=\"{$PageName}Page={$totalPages}\">...{$totalPages}</a>";
  140. }
  141. echo "<a href=\"{$PageName}Page=" . ($Page+1) . "\">下一页</a>";
  142. echo "<a href=\"{$PageName}Page={$totalPages}\">尾页</a>";
  143. }
  144. $pageInputJs = "if(event.keyCode==13){location.href='{$PageName}Page='+document.getElementById('Pagego').value}";
  145. 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=\"{$pageInputJs}\" />";
  146. }
  147. ?>
  148. </div>
  149. <div class="searchbox">
  150. <input type="text" id="keys" value="<?php echo empty($Keyscode) ? '请输入搜索关键词' : $Keyscode; ?>"
  151. onFocus="if(this.value == '<?php echo empty($Keyscode) ? '请输入搜索关键词' : $Keyscode; ?>'){this.value='';}"
  152. onBlur="if(this.value == ''){this.value='<?php echo empty($Keyscode) ? '请输入搜索关键词' : $Keyscode; ?>';}"
  153. onKeyDown="if(event.keyCode==13){location.href='?qid=<?php echo $qid; ?>&Keys='+encodeURIComponent(document.getElementById('keys').value)}" />
  154. <input type="button" id="searchgo" value="go" onClick="location.href='?qid=<?php echo $qid; ?>&Keys='+encodeURIComponent(document.getElementById('keys').value)" />
  155. </div>
  156. <div class="postchkbox">
  157. <select id="chkact" name="chkact">
  158. <option value="1">显示</option>
  159. <option value="0">隐藏</option>
  160. <option value="-1">删除</option>
  161. </select>
  162. <input type="button" value="执行" onClick="postchk(1)" class="btn1" />
  163. <input type="button" value="新增" onClick="location.href='?act=add'" class="btn1" />
  164. </div>
  165. </td>
  166. </tr>
  167. </tfoot>
  168. </table>
  169. <?php
  170. $conn->close();
  171. ?>
  172. </div>
  173. </body>
  174. </html>