TotalData.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  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. CheckLevel($logininid,$loginin,$classid,"totaldata");
  20. $totaltype=(int)$_POST['totaltype'];
  21. $classid=(int)$_POST['classid'];
  22. $tbname=RepPostVar($_POST['tbname']);
  23. $startday=RepPostVar($_POST['startday']);
  24. $endday=RepPostVar($_POST['endday']);
  25. $userid=(int)$_POST['userid'];
  26. $onclick=0;
  27. $allnum=0;
  28. $nochecknum=0;
  29. $checknum=0;
  30. $bfb=0;
  31. $and=' where ';
  32. //按类别统计
  33. if($totaltype==0)
  34. {
  35. $tbname='';
  36. if($classid&&!$class_r[$classid][tbname])
  37. {
  38. printerror("ErrorUrl","history.go(-1)");
  39. }
  40. //未审核
  41. $query="select count(*) as total from {$dbtbpre}ecms_".$class_r[$classid][tbname]."_check";
  42. //已审核
  43. $query1="select count(*) as total from {$dbtbpre}ecms_".$class_r[$classid][tbname];
  44. //点击
  45. $onclickquery="select avg(onclick) as total from {$dbtbpre}ecms_".$class_r[$classid][tbname];
  46. if($classid)
  47. {
  48. //中级类别
  49. if(empty($class_r[$classid][islast]))
  50. {
  51. $where=ReturnClass($class_r[$classid][sonclass]);
  52. }
  53. //终极类别
  54. else
  55. {
  56. $where="classid='$classid'";
  57. }
  58. $query.=" where ".$where;
  59. $query1.=" where ".$where;
  60. $onclickquery.=" where ".$where;
  61. $and=' and ';
  62. }
  63. }
  64. //按表统计
  65. elseif($totaltype==1)
  66. {
  67. $classid=0;
  68. if(!$tbname)
  69. {
  70. printerror("ErrorUrl","history.go(-1)");
  71. }
  72. //未审核
  73. $query="select count(*) as total from {$dbtbpre}ecms_".$tbname."_check";
  74. //已审核
  75. $query1="select count(*) as total from {$dbtbpre}ecms_".$tbname;
  76. //点击
  77. $onclickquery="select avg(onclick) as total from {$dbtbpre}ecms_".$tbname;
  78. }
  79. else
  80. {
  81. printerror("ErrorUrl","history.go(-1)");
  82. }
  83. //时间
  84. if($startday&&$endday)
  85. {
  86. $start=$startday." 00:00:00";
  87. $end=$endday." 23:59:59";
  88. $timeadd=$and."(newstime>='".to_time($start)."' and newstime<='".to_time($end)."')";
  89. $query.=$timeadd;
  90. $query1.=$timeadd;
  91. $onclickquery.=$timeadd;
  92. $and=' and ';
  93. }
  94. //用户
  95. if($userid)
  96. {
  97. $useradd=$and."userid='$userid'";
  98. $query.=$useradd;
  99. $query1.=$useradd;
  100. $onclickquery.=$useradd;
  101. $and=' and ';
  102. }
  103. //数据表
  104. $htb=0;
  105. $tbsql=$empire->query("select tbname,tname from {$dbtbpre}enewstable order by tid");
  106. while($tbr=$empire->fetch($tbsql))
  107. {
  108. $select="";
  109. if($tbr[tbname]==$tbname)
  110. {
  111. $htb=1;
  112. $select=" selected";
  113. }
  114. $tbstr.="<option value='".$tbr[tbname]."'".$select.">".$tbr[tname]."</option>";
  115. }
  116. if($totaltype==1&&$htb==0)
  117. {
  118. printerror('ErrorUrl','');
  119. }
  120. if($classid||$tbname)
  121. {
  122. //审核
  123. $checknum=$empire->gettotal($query1);
  124. //未审核
  125. $nochecknum=$empire->gettotal($query);
  126. //总信息数
  127. $allnum=$checknum+$nochecknum;
  128. //点击率
  129. $onclick=$empire->gettotal($onclickquery);
  130. }
  131. //栏目
  132. $fcfile="../data/fc/ListEnews.php";
  133. $class="<script src=../data/fc/cmsclass.js></script>";
  134. if(!file_exists($fcfile))
  135. {$class=ShowClass_AddClass("",$classid,0,"|-",0,0);}
  136. //用户
  137. $usersql=$empire->query("select userid,username from {$dbtbpre}enewsuser order by userid");
  138. while($userr=$empire->fetch($usersql))
  139. {
  140. if($userr[userid]==$userid)
  141. {$select=" selected";}
  142. else
  143. {$select="";}
  144. $user.="<option value='".$userr[userid]."'".$select.">".$userr[username]."</option>";
  145. }
  146. db_close();
  147. $empire=null;
  148. ?>
  149. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  150. <html>
  151. <head>
  152. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  153. <title>统计数据</title>
  154. <link href="adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  155. <script type="text/javascript" src="ecmseditor/js/jstime/WdatePicker.js"></script>
  156. </head>
  157. <body>
  158. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  159. <tr>
  160. <td height="25">位置:<a href="TotalData.php<?=$ecms_hashur['whehref']?>">统计数据</a></td>
  161. </tr>
  162. </table>
  163. <form name="form1" method="post" action="TotalData.php">
  164. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  165. <?=$ecms_hashur['eform']?>
  166. <tr class="header">
  167. <td height="25" colspan="2">统计数据
  168. <input name="enews" type="hidden" id="enews" value="TotalData"> </td>
  169. </tr>
  170. <tr bgcolor="#FFFFFF">
  171. <td width="19%" height="25"><input name="totaltype" type="radio" value="0"<?=$totaltype==0?' checked':''?>>
  172. 按栏目统计</td>
  173. <td width="81%" height="25"><select name="classid" id="classid">
  174. <?=$class?>
  175. </select>
  176. (如选择父栏目,将统计于所有子栏目) </td>
  177. </tr>
  178. <tr bgcolor="#FFFFFF">
  179. <td height="25"><input name="totaltype" type="radio" value="1"<?=$totaltype==1?' checked':''?>>
  180. 按数据表统计</td>
  181. <td height="25"><select name="tbname" id="tbname">
  182. <?=$tbstr?>
  183. </select></td>
  184. </tr>
  185. <tr bgcolor="#FFFFFF">
  186. <td height="25">录入者:</td>
  187. <td height="25"><select name="userid" id="userid">
  188. <option value="0">所有录入者</option>
  189. <?=$user?>
  190. </select></td>
  191. </tr>
  192. <tr bgcolor="#FFFFFF">
  193. <td height="25">时间范围:</td>
  194. <td height="25">从
  195. <input name="startday" type="text" value="<?=$startday?>" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  196. <input name="endday" type="text" value="<?=$endday?>" size="15" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  197. 之间的数据(两边为空则为不限制日期)</td>
  198. </tr>
  199. <tr bgcolor="#FFFFFF">
  200. <td height="25">&nbsp;</td>
  201. <td height="25"><input type="submit" name="Submit" value="开始统计"> <input type="reset" name="Submit2" value="重置"></td>
  202. </tr>
  203. </table>
  204. </form>
  205. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  206. <tr bgcolor="#FFFFFF">
  207. <td height="25" colspan="4"> <div align="center">统计时间:
  208. <?=date("Y-m-d H:i:s")?>
  209. </div></td>
  210. </tr>
  211. <tr class="header">
  212. <td width="23%" height="25"><div align="center">总信息数</div></td>
  213. <td width="23%" height="25"> <p align="center">未审核数</p></td>
  214. <td width="23%" height="25"> <div align="center">已审核数</div></td>
  215. <td width="15%"><div align="center">平均点击数</div></td>
  216. </tr>
  217. <tr bgcolor="#FFFFFF">
  218. <td height="25"><div align="center"><font color=red>
  219. <?=$allnum?>
  220. </font></div></td>
  221. <td height="25"><div align="center">
  222. <?=$nochecknum?>
  223. </div></td>
  224. <td height="25"><div align="center">
  225. <?=$checknum?>
  226. </div></td>
  227. <td><div align="center">
  228. <?=$onclick?>
  229. </div></td>
  230. </tr>
  231. </table>
  232. <p>&nbsp;</p>
  233. </body>
  234. </html>