gbook.php 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  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. require "../".LoadLang("pub/fun.php");
  8. $link=db_connect();
  9. $empire=new mysqlquery();
  10. $editor=1;
  11. //验证用户
  12. $lur=is_login();
  13. $logininid=$lur['userid'];
  14. $loginin=$lur['username'];
  15. $loginrnd=$lur['rnd'];
  16. $loginlevel=$lur['groupid'];
  17. $loginadminstyleid=$lur['adminstyleid'];
  18. //ehash
  19. $ecms_hashur=hReturnEcmsHashStrAll();
  20. //验证权限
  21. CheckLevel($logininid,$loginin,$classid,"gbook");
  22. $enews=$_GET['enews'];
  23. if(empty($enews))
  24. {$enews=$_POST['enews'];}
  25. if($enews)
  26. {
  27. hCheckEcmsRHash();
  28. }
  29. if($enews=="DelGbook")
  30. {
  31. $lyid=$_GET['lyid'];
  32. $bid=$_GET['bid'];
  33. DelGbook($lyid,$bid,$logininid,$loginin);
  34. }
  35. elseif($enews=="ReGbook")
  36. {
  37. $lyid=$_POST['lyid'];
  38. $bid=$_POST['bid'];
  39. $retext=$_POST['retext'];
  40. ReGbook($lyid,$retext,$bid,$logininid,$loginin);
  41. }
  42. elseif($enews=="DelGbook_all")
  43. {
  44. $lyid=$_POST['lyid'];
  45. $bid=$_POST['bid'];
  46. DelGbook_all($lyid,$bid,$logininid,$loginin);
  47. }
  48. elseif($enews=="CheckGbook_all")
  49. {
  50. $lyid=$_POST['lyid'];
  51. $bid=$_POST['bid'];
  52. CheckGbook_all($lyid,$bid,$logininid,$loginin);
  53. }
  54. else
  55. {}
  56. $page=(int)$_GET['page'];
  57. $page=RepPIntvar($page);
  58. $start=0;
  59. $line=12;//每页显示条数
  60. $page_line=12;//每页显示链接数
  61. $offset=$page*$line;//总偏移量
  62. $search='';
  63. $search.=$ecms_hashur['ehref'];
  64. $add='';
  65. $and=' where ';
  66. //选择分类
  67. $bid=(int)$_GET['bid'];
  68. if($bid)
  69. {
  70. $add.=$and."bid='$bid'";
  71. $search.="&bid=$bid";
  72. $and=' and ';
  73. }
  74. //是否审核
  75. $checked=(int)$_GET['checked'];
  76. if($checked)
  77. {
  78. if($checked==1)//已审核
  79. {
  80. $add.=$and."checked=0";
  81. }
  82. else//待审核
  83. {
  84. $add.=$and."checked=1";
  85. }
  86. $and=' and ';
  87. $search.="&checked=$checked";
  88. }
  89. //搜索
  90. $sear=(int)$_GET['sear'];
  91. if($sear)
  92. {
  93. $keyboard=RepPostVar2($_GET['keyboard']);
  94. $show=(int)$_GET['show'];
  95. if($keyboard)
  96. {
  97. if($show==1)//留言者
  98. {
  99. $add.=$and."name like '%$keyboard%'";
  100. }
  101. elseif($show==2)//留言内容
  102. {
  103. $add.=$and."lytext like '%$keyboard%'";
  104. }
  105. elseif($show==3)//邮箱
  106. {
  107. $add.=$and."email like '%$keyboard%'";
  108. }
  109. else//留言IP
  110. {
  111. $add.=$and."ip like '%$keyboard%'";
  112. }
  113. $and=' and ';
  114. $search.="&show=$show&keyboard=$keyboard";
  115. }
  116. }
  117. $query="select lyid,name,email,`mycall`,lytime,lytext,retext,bid,ip,checked,userid,username,eipport from {$dbtbpre}enewsgbook".$add;
  118. $totalquery="select count(*) as total from {$dbtbpre}enewsgbook".$add;
  119. $num=$empire->gettotal($totalquery);//取得总条数
  120. $query=$query." order by lyid desc limit $offset,$line";
  121. $sql=$empire->query($query);
  122. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  123. $url="<a href=gbook.php".$ecms_hashur['whehref'].">管理留言</a>";
  124. $gbclass=ReturnGbookClass($bid,0);
  125. ?>
  126. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  127. <html>
  128. <head>
  129. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  130. <title>留言管理</title>
  131. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  132. <script>
  133. function CheckAll(form)
  134. {
  135. for (var i=0;i<form.elements.length;i++)
  136. {
  137. var e = form.elements[i];
  138. if (e.name != 'chkall')
  139. e.checked = form.chkall.checked;
  140. }
  141. }
  142. </script>
  143. </head>
  144. <body>
  145. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  146. <tr>
  147. <td width="50%">位置:
  148. <?=$url?>
  149. </td>
  150. <td><div align="right" class="emenubutton">
  151. <input type="button" name="Submit5" value="留言分类管理" onclick="self.location.href='GbookClass.php<?=$ecms_hashur['whehref']?>';">
  152. &nbsp;&nbsp;
  153. <input type="button" name="Submit52" value="批量删除留言" onclick="self.location.href='DelMoreGbook.php<?=$ecms_hashur['whehref']?>';">
  154. </div></td>
  155. </tr>
  156. </table>
  157. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  158. <tr>
  159. <td width="29%">选择留言分类:
  160. <select name="bid" id="bid" onchange=window.location='gbook.php?<?=$ecms_hashur['ehref']?>&bid='+this.options[this.selectedIndex].value>
  161. <option value="0">显示全部留言</option>
  162. <?=$gbclass?>
  163. </select> </td>
  164. <form name="searchform" method="GET" action="gbook.php">
  165. <?=$ecms_hashur['eform']?>
  166. <td width="71%"><div align="right">
  167. 搜索:
  168. <select name="show" id="show">
  169. <option value="1"<?=$show==1?' selected':''?>>留言者</option>
  170. <option value="2"<?=$show==2?' selected':''?>>留言内容</option>
  171. <option value="3"<?=$show==3?' selected':''?>>邮箱</option>
  172. <option value="4"<?=$show==4?' selected':''?>>IP地址</option>
  173. </select>
  174. <input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>">
  175. <select name="checked" id="checked">
  176. <option value="0"<?=$checked==0?' selected':''?>>不限</option>
  177. <option value="1"<?=$checked==1?' selected':''?>>已审核</option>
  178. <option value="2"<?=$checked==2?' selected':''?>>待审核</option>
  179. </select>
  180. <input type="submit" name="Submit3" value="搜索">
  181. <input name="bid" type="hidden" id="bid" value="<?=$bid?>">
  182. <input name="sear" type="hidden" id="sear" value="1">
  183. &nbsp;&nbsp;
  184. </div></td>
  185. </form>
  186. </tr>
  187. </table>
  188. <form name=thisform method=post action=gbook.php onsubmit="return confirm('确认要执行操作?');">
  189. <?=$ecms_hashur['form']?>
  190. <?
  191. while($r=$empire->fetch($sql))
  192. {
  193. $br=$empire->fetch1("select bname from {$dbtbpre}enewsgbookclass where bid='$r[bid]'");
  194. //审核
  195. $checked="";
  196. $checkednc='';
  197. if($r[checked])
  198. {
  199. $checked=" title='未审核' style='background:#99C4E3'";
  200. $checkednc='NC';
  201. }
  202. $username="游客";
  203. if($r['userid'])
  204. {
  205. $username="<a href='../member/AddMember.php?enews=EditMember&userid=".$r['userid'].$ecms_hashur['ehref']."' target=_blank>".$r['username']."</a>";
  206. }
  207. ?>
  208. <table width="700" border="0" align="center" cellpadding="3" cellspacing="1" class=tableborder>
  209. <tr class=header>
  210. <td width="55%" height="23">发布者:
  211. <?=stripSlashes($r[name])?>
  212. &nbsp;(<?=$username?>)</td>
  213. <td width="45%">发布时间:
  214. <?=$r[lytime]?>&nbsp;
  215. (IP:
  216. <?=$r[ip]?>:<?=$r[eipport]?>) </td>
  217. </tr>
  218. <tr bgcolor="#FFFFFF">
  219. <td height="23" colspan="2"> <table border=0 width=100% cellspacing=1 cellpadding=10 bgcolor='#cccccc' style="WORD-BREAK: break-all; WORD-WRAP: break-word">
  220. <tr>
  221. <td width='100%' bgcolor='#FFFFFF' style='word-break:break-all'>
  222. <?=nl2br(stripSlashes($r[lytext]))?>
  223. </td>
  224. </tr>
  225. </table>
  226. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" style="WORD-BREAK: break-all; WORD-WRAP: break-word">
  227. <tr>
  228. <td><img src="../../data/images/regb.gif" width="18" height="18"><strong><font color="#FF0000">回复:</font></strong>
  229. <?=nl2br(stripSlashes($r[retext]))?>
  230. </td>
  231. </tr>
  232. </table>
  233. </td>
  234. </tr>
  235. <tr bgcolor="#FFFFFF">
  236. <td height="23" colspan="2"><div align="right">
  237. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  238. <tr>
  239. <td width="65%"><strong>邮箱:<?=$r[email]?>,电话:<?=$r[mycall]?></strong></td>
  240. <td width="35%"> <div align="left"><strong>操作:</strong>[<a href="#ecms" onclick="window.open('ReGbook.php?lyid=<?=$r[lyid]?>&bid=<?=$bid?><?=$ecms_hashur['ehref']?>','','width=600,height=380,scrollbars=yes');">回复/修改回复</a>]&nbsp;&nbsp;[<a href="gbook.php?enews=DelGbook&lyid=<?=$r[lyid]?>&bid=<?=$bid?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]
  241. <input name="lyid[]" type="checkbox" id="lyid[]" value="<?=$r[lyid]?>"<?=$checked?>><?=$checkednc?>
  242. </div></td>
  243. </tr>
  244. </table>
  245. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  246. <tr>
  247. <td><div align="center">所属留言分类:<a href="gbook.php?bid=<?=$r[bid]?><?=$ecms_hashur['ehref']?>"><?=$br[bname]?></a></div></td>
  248. </tr>
  249. </table>
  250. </div></td>
  251. </tr>
  252. </table>
  253. <br>
  254. <?
  255. }
  256. ?>
  257. <table width="700" border="0" align="center" cellpadding="3" cellspacing="1">
  258. <tr>
  259. <td>分页:
  260. <?=$returnpage?>
  261. &nbsp;&nbsp;
  262. <input type="submit" name="Submit" value="审核留言" onClick="document.thisform.enews.value='CheckGbook_all';">
  263. &nbsp;&nbsp; <input type="submit" name="Submit2" value="删除留言" onClick="document.thisform.enews.value='DelGbook_all';">
  264. <input name="enews" type="hidden" id="enews" value="DelGbook_all">
  265. <input name="bid" type="hidden" id="bid" value="<?=$bid?>">
  266. &nbsp;&nbsp;<input type=checkbox name=chkall value=on onclick=CheckAll(this.form)>全选</td>
  267. </tr>
  268. </table>
  269. </form>
  270. </body>
  271. </html>
  272. <?
  273. db_close();
  274. $empire=null;
  275. ?>