additional.php 6.7 KB

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