DelMoreGbook.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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,"gbook");
  21. //批量删除留言(条件)
  22. function DelMoreGbook($add,$logininid,$loginin){
  23. global $empire,$dbtbpre;
  24. CheckLevel($logininid,$loginin,$classid,"gbook");//验证权限
  25. //变量处理
  26. $name=RepPostStr($add['name']);
  27. $ip=RepPostVar($add['ip']);
  28. $email=RepPostStr($add['email']);
  29. $mycall=RepPostStr($add['mycall']);
  30. $lytext=RepPostStr($add['lytext']);
  31. $startlyid=(int)$add['startlyid'];
  32. $endlyid=(int)$add['endlyid'];
  33. $startlytime=RepPostVar($add['startlytime']);
  34. $endlytime=RepPostVar($add['endlytime']);
  35. $checked=(int)$add['checked'];
  36. $ismember=(int)$add['ismember'];
  37. $bid=(int)$add['bid'];
  38. $havere=(int)$add['havere'];
  39. $where='';
  40. //留言分类
  41. if($bid)
  42. {
  43. $where.=" and bid='$bid'";
  44. }
  45. //是否会员
  46. if($ismember)
  47. {
  48. if($ismember==1)
  49. {
  50. $where.=" and userid=0";
  51. }
  52. else
  53. {
  54. $where.=" and userid>0";
  55. }
  56. }
  57. //留言ID
  58. if($endlyid)
  59. {
  60. $where.=' and lyid BETWEEN '.$startlyid.' and '.$endlyid;
  61. }
  62. //发布时间
  63. if($startlytime&&$endlytime)
  64. {
  65. $where.=" and lytime>='$startlytime' and lytime<='$endlytime'";
  66. }
  67. //是否审核
  68. if($checked)
  69. {
  70. $checkval=$checked==1?0:1;
  71. $where.=" and checked='$checkval'";
  72. }
  73. //是否回复
  74. if($havere)
  75. {
  76. if($havere==1)
  77. {
  78. $where.=" and retext<>''";
  79. }
  80. else
  81. {
  82. $where.=" and retext=''";
  83. }
  84. }
  85. //姓名
  86. if($name)
  87. {
  88. $where.=" and name like '%$name%'";
  89. }
  90. //发布IP
  91. if($ip)
  92. {
  93. $where.=" and ip like '%$ip%'";
  94. }
  95. //邮箱
  96. if($email)
  97. {
  98. $where.=" and email like '%$email%'";
  99. }
  100. //电话
  101. if($mycall)
  102. {
  103. $where.=" and `mycall` like '%$mycall%'";
  104. }
  105. //留言内容
  106. if($lytext)
  107. {
  108. $where.=" and lytext like '%$lytext%'";
  109. }
  110. if(!$where)
  111. {
  112. printerror("EmptyDelMoreGbook","history.go(-1)");
  113. }
  114. $where=substr($where,5);
  115. $sql=$empire->query("delete from {$dbtbpre}enewsgbook where ".$where);
  116. insert_dolog("");//操作日志
  117. printerror("DelGbookSuccess","DelMoreGbook.php".hReturnEcmsHashStrHref2(1));
  118. }
  119. $enews=$_POST['enews'];
  120. if($enews)
  121. {
  122. hCheckEcmsRHash();
  123. }
  124. if($enews=='DelMoreGbook')
  125. {
  126. @set_time_limit(0);
  127. DelMoreGbook($_POST,$logininid,$loginin);
  128. }
  129. $gbclass=ReturnGbookClass(0,0);
  130. db_close();
  131. $empire=null;
  132. ?>
  133. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  134. <html>
  135. <head>
  136. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  137. <title>批量删除留言</title>
  138. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  139. <script type="text/javascript" src="../ecmseditor/js/jstime/WdatePicker.js"></script>
  140. </head>
  141. <body>
  142. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  143. <tr>
  144. <td>位置:<a href=gbook.php<?=$ecms_hashur['whehref']?>>管理留言</a>&nbsp;>&nbsp;批量删除留言</td>
  145. </tr>
  146. </table>
  147. <form name="form1" method="post" action="DelMoreGbook.php" onsubmit="return confirm('确认要删除?');">
  148. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  149. <?=$ecms_hashur['form']?>
  150. <tr class="header">
  151. <td height="25" colspan="2">批量删除留言 <input name="enews" type="hidden" id="enews" value="DelMoreGbook"></td>
  152. </tr>
  153. <tr bgcolor="#FFFFFF">
  154. <td height="25">所属留言分类:</td>
  155. <td height="25"><select name="bid" id="bid">
  156. <option value="0">不限</option>
  157. <?=$gbclass?>
  158. </select></td>
  159. </tr>
  160. <tr bgcolor="#FFFFFF">
  161. <td height="25">留言IP包含:</td>
  162. <td height="25"><input name=ip type=text id="ip"></td>
  163. </tr>
  164. <tr bgcolor="#FFFFFF">
  165. <td width="19%" height="25">姓名包含:</td>
  166. <td width="81%" height="25"><input name=name type=text id="name"></td>
  167. </tr>
  168. <tr bgcolor="#FFFFFF">
  169. <td height="25">邮箱包含:</td>
  170. <td height="25"><input name=email type=text id="email"></td>
  171. </tr>
  172. <tr bgcolor="#FFFFFF">
  173. <td height="25">电话包含:</td>
  174. <td height="25"><input name=mycall type=text id="mycall"></td>
  175. </tr>
  176. <tr bgcolor="#FFFFFF">
  177. <td height="25">留言内容包含:</td>
  178. <td height="25"><textarea name="lytext" cols="70" rows="5" id="lytext"></textarea></td>
  179. </tr>
  180. <tr bgcolor="#FFFFFF">
  181. <td height="25">留言ID 介于:</td>
  182. <td height="25"><input name="startlyid" type="text" id="startlyid">
  183. --
  184. <input name="endlyid" type="text" id="endlyid"></td>
  185. </tr>
  186. <tr bgcolor="#FFFFFF">
  187. <td height="25" valign="top">留言时间 介于:</td>
  188. <td height="25"><input name="startlytime" type="text" id="startlytime" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  189. --
  190. <input name="endlytime" type="text" id="endlytime" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  191. <font color="#666666">(格式:2011-01-27)</font></td>
  192. </tr>
  193. <tr bgcolor="#FFFFFF">
  194. <td height="25">是否会员发布:</td>
  195. <td height="25"><input name="ismember" type="radio" value="0" checked>
  196. 不限
  197. <input type="radio" name="ismember" value="1">
  198. 游客发布
  199. <input type="radio" name="ismember" value="2">
  200. 会员发布</td>
  201. </tr>
  202. <tr bgcolor="#FFFFFF">
  203. <td height="25" valign="top">是否有回复:</td>
  204. <td height="25"><input name="havere" type="radio" value="0" checked>
  205. 不限
  206. <input name="havere" type="radio" value="1">
  207. 已回复留言
  208. <input name="havere" type="radio" value="2">
  209. 未回复留言</td>
  210. </tr>
  211. <tr bgcolor="#FFFFFF">
  212. <td height="25">是否审核:</td>
  213. <td height="25"><input name="checked" type="radio" value="0" checked>
  214. 不限
  215. <input name="checked" type="radio" value="1">
  216. 已审核留言
  217. <input name="checked" type="radio" value="2">
  218. 未审核留言</td>
  219. </tr>
  220. <tr bgcolor="#FFFFFF">
  221. <td height="25">&nbsp;</td>
  222. <td height="25"><input type="submit" name="Submit" value="删除留言"> </td>
  223. </tr>
  224. </table>
  225. </form>
  226. </body>
  227. </html>