infotop.php 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../class/connect.php");
  4. require("../class/db_sql.php");
  5. require("../class/functions.php");
  6. require("../data/dbcache/class.php");
  7. $link=db_connect();
  8. $empire=new mysqlquery();
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. //排行显示
  19. function ecmsShowInfoTop($query,$where,$field,$topnum,$day){
  20. global $empire,$dbtbpre,$class_r;
  21. if($day)
  22. {
  23. $and=$where?' and ':' where ';
  24. $query.=$and."newstime>=".time()."-".($day*24*3600);
  25. }
  26. if($field=='plnum')
  27. {
  28. $word='评论数';
  29. }
  30. elseif($field=='totaldown')
  31. {
  32. $word='下载数';
  33. }
  34. elseif($field=='onclick')
  35. {
  36. $word='点击数';
  37. }
  38. $query.=" order by ".$field." desc limit ".$topnum;
  39. echo"<table width='100%' border='0' cellpadding='3' cellspacing='1' class='tableborder'><tr><td width='85%'>标题</td><td width='15%'>$word</td></tr>";
  40. $sql=$empire->query($query);
  41. while($r=$empire->fetch($sql))
  42. {
  43. $classurl=sys_ReturnBqClassname($r,9);
  44. $titleurl=sys_ReturnBqTitleLink($r);
  45. echo"<tr bgcolor='#ffffff' height='23'><td>[<a href='".$classurl."' target='_blank'>".$class_r[$r[classid]][classname]."</a>] <a href='$titleurl' target='_blank' title='发布时间:".date("Y-m-d H:i:s",$r[newstime])."'>".stripSlashes($r[title])."</a></td><td>".$r[$field]."</td></tr>";
  46. }
  47. echo"</table>";
  48. }
  49. $where='';
  50. //数据表
  51. $tbname=RepPostVar($_GET['tbname']);
  52. if(empty($tbname))
  53. {
  54. $tbname=$public_r['tbname'];
  55. }
  56. $htb=0;
  57. $tbsql=$empire->query("select tbname,tname from {$dbtbpre}enewstable order by tid");
  58. while($tbr=$empire->fetch($tbsql))
  59. {
  60. $select="";
  61. if($tbr[tbname]==$tbname)
  62. {
  63. $htb=1;
  64. $select=" selected";
  65. }
  66. $tbs.="<option value='".$tbr[tbname]."'".$select.">".$tbr[tname]."</option>";
  67. }
  68. if($htb==0)
  69. {
  70. printerror('ErrorUrl','');
  71. }
  72. //栏目
  73. $classid=(int)$_GET['classid'];
  74. if($classid)
  75. {
  76. $and=$where?' and ':' where ';
  77. if($class_r[$classid][islast])
  78. {
  79. $where.=$and."classid='$classid'";
  80. }
  81. else
  82. {
  83. $where.=$and."(".ReturnClass($class_r[$classid][sonclass]).")";
  84. }
  85. }
  86. //标题分类
  87. $ttid=(int)$_GET['ttid'];
  88. if($ttid)
  89. {
  90. $and=$where?' and ':' where ';
  91. $where.=$and." ttid='$ttid'";
  92. }
  93. $ttclass="";
  94. $tt_sql=$empire->query("select typeid,tname from {$dbtbpre}enewsinfotype order by typeid");
  95. while($tt_r=$empire->fetch($tt_sql))
  96. {
  97. $selected='';
  98. if($tt_r[typeid]==$ttid)
  99. {
  100. $selected=" selected";
  101. }
  102. $ttclass.="<option value='".$tt_r[typeid]."'".$selected.">".$tt_r[tname]."</option>";
  103. }
  104. //字段
  105. $myorder=(int)$_GET['myorder'];
  106. if($myorder==1)
  107. {
  108. $field='plnum';
  109. }
  110. elseif($myorder==2)
  111. {
  112. $field='totaldown';
  113. }
  114. else
  115. {
  116. $field='onclick';
  117. }
  118. //搜索
  119. if($_GET['keyboard'])
  120. {
  121. $and=$where?' and ':' where ';
  122. $keyboard=RepPostVar2($_GET['keyboard']);
  123. $show=RepPostStr($_GET['show'],1);
  124. if($show==0)//搜索标题
  125. {
  126. $where.=$and."title like '%$keyboard%'";
  127. }
  128. else//搜索作者
  129. {
  130. $where.=$and."username like '%$keyboard%'";
  131. }
  132. }
  133. //显示条数
  134. $topnum=(int)$_GET['topnum'];
  135. if($topnum<1||$topnum>100)
  136. {
  137. $topnum=10;
  138. }
  139. $query="select id,title,classid,newstime,isurl,titleurl,".$field." from {$dbtbpre}ecms_".$tbname.$where;
  140. ?>
  141. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  142. <html>
  143. <head>
  144. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  145. <title>信息排行</title>
  146. <link href="adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  147. </head>
  148. <body>
  149. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  150. <tr>
  151. <td>位置:<a href="infotop.php<?=$ecms_hashur['whehref']?>">信息排行</a></td>
  152. </tr>
  153. </table>
  154. <br>
  155. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  156. <form name="searchform" method="GET" action="infotop.php">
  157. <?=$ecms_hashur['eform']?>
  158. <tr>
  159. <td>数据表
  160. <select name="tbname" id="tbname">
  161. <?=$tbs?>
  162. </select>
  163. ,栏目 <span id="listfileclassnav"></span> ,标题分类
  164. <select name="ttid" id="ttid">
  165. <option value="0">所有标题分类</option>
  166. <?=$ttclass?>
  167. </select>
  168. ,排行
  169. <select name="myorder" id="myorder">
  170. <option value="0"<?=$myorder==0?' selected':''?>>点击排行</option>
  171. <option value="1"<?=$myorder==1?' selected':''?>>评论排行</option>
  172. <option value="2"<?=$myorder==2?' selected':''?>>下载排行</option>
  173. </select>
  174. ,显示
  175. <input name="topnum" type="text" id="topnum" value="<?=$topnum?>" size="6">
  176. ,关键字
  177. <input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>">
  178. <select name="show" id="show">
  179. <option value="0"<?=$show==0?' selected':''?>>标题</option>
  180. <option value="1"<?=$show==1?' selected':''?>>发布者</option>
  181. </select>
  182. <input type="submit" name="Submit" value="显示排行"></td>
  183. </tr>
  184. </form>
  185. </table>
  186. <br>
  187. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  188. <tr valign="top">
  189. <td width="50%">
  190. <table width="98%" border="0" cellpadding="3" cellspacing="1" class="tableborder">
  191. <tr class="header">
  192. <td height="25">24小时排行</td>
  193. </tr>
  194. <tr>
  195. <td height="25" bgcolor="#FFFFFF">
  196. <?php ecmsShowInfoTop($query,$where,$field,$topnum,1);?>
  197. </td>
  198. </tr>
  199. </table></td>
  200. <td width="50%"><table width="98%" border="0" align="right" cellpadding="3" cellspacing="1" class="tableborder">
  201. <tr class="header">
  202. <td height="25">一周排行</td>
  203. </tr>
  204. <tr>
  205. <td height="25" bgcolor="#FFFFFF">
  206. <?php ecmsShowInfoTop($query,$where,$field,$topnum,7);?>
  207. </td>
  208. </tr>
  209. </table> </td>
  210. </tr>
  211. <tr valign="top">
  212. <td>
  213. <table width="98%" border="0" cellpadding="3" cellspacing="1" class="tableborder">
  214. <tr class="header">
  215. <td height="25">一个月排行</td>
  216. </tr>
  217. <tr>
  218. <td height="25" bgcolor="#FFFFFF">
  219. <?php ecmsShowInfoTop($query,$where,$field,$topnum,30);?>
  220. </td>
  221. </tr>
  222. </table></td>
  223. <td><table width="98%" border="0" align="right" cellpadding="3" cellspacing="1" class="tableborder">
  224. <tr class="header">
  225. <td height="25">三个月排行</td>
  226. </tr>
  227. <tr>
  228. <td height="25" bgcolor="#FFFFFF">
  229. <?php ecmsShowInfoTop($query,$where,$field,$topnum,90);?>
  230. </td>
  231. </tr>
  232. </table>
  233. </td>
  234. </tr>
  235. <tr valign="top">
  236. <td><table width="98%" border="0" cellpadding="3" cellspacing="1" class="tableborder">
  237. <tr class="header">
  238. <td height="25">一年排行</td>
  239. </tr>
  240. <tr>
  241. <td height="25" bgcolor="#FFFFFF">
  242. <?php ecmsShowInfoTop($query,$where,$field,$topnum,365);?>
  243. </td>
  244. </tr>
  245. </table> </td>
  246. <td><table width="98%" border="0" align="right" cellpadding="3" cellspacing="1" class="tableborder">
  247. <tr class="header">
  248. <td height="25">所有排行</td>
  249. </tr>
  250. <tr>
  251. <td height="25" bgcolor="#FFFFFF">
  252. <?php ecmsShowInfoTop($query,$where,$field,$topnum,0);?>
  253. </td>
  254. </tr>
  255. </table></td>
  256. </tr>
  257. </table>
  258. <IFRAME frameBorder="0" id="showclassnav" name="showclassnav" scrolling="no" src="ShowClassNav.php?ecms=5&classid=<?=$classid?><?=$ecms_hashur['ehref']?>" style="HEIGHT:0;VISIBILITY:inherit;WIDTH:0;Z-INDEX:1"></IFRAME>
  259. </body>
  260. </html>
  261. <?php
  262. db_close();
  263. $empire=null;
  264. ?>