feedback.php 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require("../../class/com_functions.php");
  7. $link=db_connect();
  8. $empire=new mysqlquery();
  9. $editor=1;
  10. //验证用户
  11. $lur=is_login();
  12. $logininid=$lur['userid'];
  13. $loginin=$lur['username'];
  14. $loginrnd=$lur['rnd'];
  15. $loginlevel=$lur['groupid'];
  16. $loginadminstyleid=$lur['adminstyleid'];
  17. //ehash
  18. $ecms_hashur=hReturnEcmsHashStrAll();
  19. //验证权限
  20. CheckLevel($logininid,$loginin,$classid,"feedback");
  21. $enews=$_GET['enews'];
  22. if(empty($enews))
  23. {
  24. $enews=$_POST['enews'];
  25. }
  26. if($enews)
  27. {
  28. hCheckEcmsRHash();
  29. }
  30. if($enews=="DelFeedback")
  31. {
  32. $id=$_GET['id'];
  33. $bid=$_GET['bid'];
  34. DelFeedback($id,$bid,$logininid,$loginin);
  35. }
  36. elseif($enews=="DelFeedback_all")
  37. {
  38. $id=$_POST['id'];
  39. $bid=$_POST['bid'];
  40. DelFeedback_all($id,$bid,$logininid,$loginin);
  41. }
  42. include "../".LoadLang("pub/fun.php");
  43. $page=(int)$_GET['page'];
  44. $page=RepPIntvar($page);
  45. $start=0;
  46. $line=25;//每页显示条数
  47. $page_line=12;//每页显示链接数
  48. $offset=$page*$line;//总偏移量
  49. $add='';
  50. $and=' where ';
  51. $search='';
  52. $search.=$ecms_hashur['ehref'];
  53. //选择分类
  54. $bid=(int)$_GET['bid'];
  55. $bidr=ReturnAdminFeedbackClass($bid,$logininid,$loginin);
  56. if($bid)
  57. {
  58. $add.=$and."bid='$bid'";
  59. $search.="&bid=$bid";
  60. $and=' and ';
  61. }
  62. elseif($bidr['bids']&&$bidr['allbid']==0)
  63. {
  64. $add.=$and.'bid in ('.$bidr['bids'].')';
  65. $and=' and ';
  66. }
  67. //是否阅读
  68. $haveread=(int)$_GET['haveread'];
  69. if($haveread)
  70. {
  71. if($haveread==1)//已读
  72. {
  73. $add.=$and."haveread=1";
  74. }
  75. else//未读
  76. {
  77. $add.=$and."haveread=0";
  78. }
  79. $and=' and ';
  80. $search.="&haveread=$haveread";
  81. }
  82. //搜索
  83. $sear=(int)$_GET['sear'];
  84. if($sear)
  85. {
  86. $keyboard=RepPostVar2($_GET['keyboard']);
  87. $show=(int)$_GET['show'];
  88. if($keyboard)
  89. {
  90. if($show==1)//标题
  91. {
  92. $add.=$and."title like '%$keyboard%'";
  93. }
  94. elseif($show==2)//反馈内容
  95. {
  96. $add.=$and."saytext like '%$keyboard%'";
  97. }
  98. elseif($show==3)//姓名
  99. {
  100. $add.=$and."name like '%$keyboard%'";
  101. }
  102. elseif($show==4)//单位名称
  103. {
  104. $add.=$and."company like '%$keyboard%'";
  105. }
  106. elseif($show==5)//邮箱
  107. {
  108. $add.=$and."email like '%$keyboard%'";
  109. }
  110. else//留言IP
  111. {
  112. $add.=$and."ip like '%$keyboard%'";
  113. }
  114. $and=' and ';
  115. $search.="&show=$show&keyboard=$keyboard";
  116. }
  117. }
  118. $gbclass=$bidr['selects'];
  119. $query="select id,bid,title,saytime,userid,username,haveread,eipport from {$dbtbpre}enewsfeedback".$add;
  120. $totalquery="select count(*) as total from {$dbtbpre}enewsfeedback".$add;
  121. $num=$empire->gettotal($totalquery);//取得总条数
  122. $query=$query." order by id desc limit $offset,$line";
  123. $sql=$empire->query($query);
  124. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  125. $url="<a href=feedback.php".$ecms_hashur['whehref'].">管理信息反馈</a>";
  126. ?>
  127. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  128. <html>
  129. <head>
  130. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  131. <title>管理信息反馈</title>
  132. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  133. <script>
  134. function CheckAll(form)
  135. {
  136. for (var i=0;i<form.elements.length;i++)
  137. {
  138. var e = form.elements[i];
  139. if (e.name != 'chkall')
  140. e.checked = form.chkall.checked;
  141. }
  142. }
  143. </script>
  144. </head>
  145. <body>
  146. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  147. <tr>
  148. <td width="50%">位置:
  149. <?=$url?>
  150. </td>
  151. <td><div align="right" class="emenubutton">
  152. <input type="button" name="Submit5" value="管理反馈分类" onclick="self.location.href='FeedbackClass.php<?=$ecms_hashur['whehref']?>';">
  153. &nbsp;&nbsp;
  154. <input type="button" name="Submit52" value="管理反馈字段" onclick="self.location.href='ListFeedbackF.php<?=$ecms_hashur['whehref']?>';">
  155. </div></td>
  156. </tr>
  157. </table>
  158. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  159. <tr>
  160. <td width="35%"><div align="center">
  161. <p align="left">选择反馈分类:
  162. <select name="bid" id="bid" onchange=window.location='feedback.php?<?=$ecms_hashur['ehref']?>&bid='+this.options[this.selectedIndex].value>
  163. <option value="0">显示全部反馈</option>
  164. <?=$gbclass?>
  165. </select>
  166. </p>
  167. </div></td>
  168. <form name="searchform" method="GET" action="feedback.php">
  169. <?=$ecms_hashur['eform']?>
  170. <td width="65%"><div align="right">搜索:
  171. <select name="show" id="show">
  172. <option value="1"<?=$show==1?' selected':''?>>标题</option>
  173. <option value="2"<?=$show==2?' selected':''?>>反馈内容</option>
  174. <option value="3"<?=$show==3?' selected':''?>>姓名</option>
  175. <option value="4"<?=$show==4?' selected':''?>>单位名称</option>
  176. <option value="5"<?=$show==5?' selected':''?>>邮箱</option>
  177. <option value="6"<?=$show==6?' selected':''?>>IP地址</option>
  178. </select>
  179. <input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>">
  180. <select name="haveread" id="haveread">
  181. <option value="0"<?=$haveread==0?' selected':''?>>不限</option>
  182. <option value="1"<?=$haveread==1?' selected':''?>>已读</option>
  183. <option value="2"<?=$haveread==2?' selected':''?>>未读</option>
  184. </select>
  185. <input type="submit" name="Submit3" value="搜索">
  186. <input name="bid" type="hidden" id="bid" value="<?=$bid?>">
  187. <input name="sear" type="hidden" id="sear" value="1">
  188. &nbsp;&nbsp;
  189. </div></td>
  190. </form>
  191. </tr>
  192. </table>
  193. <form name="form1" method="post" action="feedback.php" onsubmit="return confirm('确认要删除?');">
  194. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class=tableborder>
  195. <?=$ecms_hashur['form']?>
  196. <tr class=header>
  197. <td width="7%" height="23"><div align="center">ID</div></td>
  198. <td width="43%" height="23"><div align="center">标题(点击查看)</div></td>
  199. <td width="20%" height="23"><div align="center">所属分类</div></td>
  200. <td width="18%" height="23"><div align="center">发布时间</div></td>
  201. <td width="12%" height="23"><div align="center">操作</div></td>
  202. </tr>
  203. <?
  204. while($r=$empire->fetch($sql))
  205. {
  206. $br=$empire->fetch1("select bname from {$dbtbpre}enewsfeedbackclass where bid='$r[bid]'");
  207. $username="游客";
  208. if($r['userid'])
  209. {
  210. $username="<a href='../member/AddMember.php?enews=EditMember&userid=".$r['userid'].$ecms_hashur['ehref']."' target=_blank>".$r['username']."</a>";
  211. }
  212. $r['title']=stripSlashes($r['title']);
  213. if(empty($r['haveread']))
  214. {
  215. $r['title']='<b>'.$r['title'].'</b>';
  216. }
  217. ?>
  218. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  219. <td height="25"><div align="center">
  220. <?=$r[id]?>
  221. </div></td>
  222. <td height="25"><div align="left"><a href=#ecms onclick="window.open('ShowFeedback.php?id=<?=$r[id]?><?=$ecms_hashur['ehref']?>','','width=650,height=600,scrollbars=yes,top=70,left=100');">
  223. <?=$r[title]?>
  224. </a>&nbsp;(
  225. <?=$username?>
  226. )</div></td>
  227. <td height="25"><div align="center"><a href="feedback.php?bid=<?=$r[bid]?><?=$ecms_hashur['ehref']?>">
  228. <?=$br[bname]?>
  229. </a></div></td>
  230. <td height="25"><div align="center">
  231. <?=$r[saytime]?>
  232. </div></td>
  233. <td height="25"><div align="center">[<a href="feedback.php?enews=DelFeedback&id=<?=$r[id]?>&bid=<?=$bid?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>
  234. <input name="id[]" type="checkbox" id="id[]" value="<?=$r[id]?>">
  235. ]</div></td>
  236. </tr>
  237. <?
  238. }
  239. ?>
  240. <tr bgcolor="#FFFFFF">
  241. <td height="25" colspan="5">&nbsp;
  242. <?=$returnpage?>
  243. &nbsp;&nbsp;&nbsp; <input type="submit" name="Submit" value="批量删除"> <input name="bid" type="hidden" id="bid" value="<?=$bid?>">
  244. <input name="enews" type="hidden" id="enews" value="DelFeedback_all">
  245. &nbsp;&nbsp;
  246. <input type=checkbox name=chkall value=on onclick=CheckAll(this.form)>
  247. 全选</td>
  248. </tr>
  249. <tr bgcolor="#FFFFFF">
  250. <td height="25" colspan="5">说明:未读信息标题为粗体字。</td>
  251. </tr>
  252. </table>
  253. </form>
  254. </body>
  255. </html>
  256. <?
  257. db_close();
  258. $empire=null;
  259. ?>