MoreUserTotal.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  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. $userid=(int)$_GET['userid'];
  21. $username=RepPostVar($_GET['username']);
  22. $tbname=RepPostVar($_GET['tbname']);
  23. if(empty($tbname))
  24. {
  25. $tbname=$public_r['tbname'];
  26. }
  27. if(!$userid||!$username||!$tbname)
  28. {
  29. printerror('ErrorUrl','');
  30. }
  31. //数据表
  32. $b=0;
  33. $htb=0;
  34. $tbsql=$empire->query("select tbname,tname from {$dbtbpre}enewstable order by tid");
  35. while($tbr=$empire->fetch($tbsql))
  36. {
  37. $b=1;
  38. $select="";
  39. if($tbr[tbname]==$tbname)
  40. {
  41. $htb=1;
  42. $select=" selected";
  43. }
  44. $tbstr.="<option value='".$tbr[tbname]."'".$select.">".$tbr[tname]."</option>";
  45. }
  46. if($b==0)
  47. {
  48. printerror('ErrorUrl','');
  49. }
  50. if($htb==0)
  51. {
  52. printerror('ErrorUrl','');
  53. }
  54. //日期
  55. $year=date("Y");
  56. $yyear=$year-1;
  57. $date=RepPostVar($_GET['date']);
  58. if(empty($date))
  59. {
  60. $date=date("Y-m");
  61. }
  62. $selectdate='';
  63. $yselectdate='';
  64. for($i=1;$i<=12;$i++)
  65. {
  66. $m=$i;
  67. if($i<10)
  68. {
  69. $m='0'.$i;
  70. }
  71. //今年
  72. $sdate=$year.'-'.$m;
  73. $select='';
  74. if($sdate==$date)
  75. {
  76. $select=' selected';
  77. }
  78. $selectdate.="<option value='".$sdate."'".$select.">".$sdate."</option>";
  79. //去年
  80. $ysdate=$yyear.'-'.$m;
  81. $yselect='';
  82. if($ysdate==$date)
  83. {
  84. $yselect=' selected';
  85. }
  86. $yselectdate.="<option value='".$ysdate."'".$yselect.">".$ysdate."</option>";
  87. }
  88. ?>
  89. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  90. <html>
  91. <head>
  92. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  93. <title><?=$username?> 的发布统计</title>
  94. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  95. </head>
  96. <body>
  97. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  98. <form name="ChangeDate" method="get" action="MoreUserTotal.php">
  99. <?=$ecms_hashur['eform']?>
  100. <input type="hidden" name="userid" value="<?=$userid?>">
  101. <input type="hidden" name="username" value="<?=$username?>">
  102. <tr>
  103. <td height="25">位置:<a href="MoreUserTotal.php?tbname=<?=$tbname?>&userid=<?=$userid?>&username=<?=$username?><?=$ecms_hashur['ehref']?>"><?=$username?> 的发布统计</a></td>
  104. </tr>
  105. <tr>
  106. <td height="30"> <div align="center">
  107. <select name="date" id="date">
  108. <?=$yselectdate.$selectdate?>
  109. </select>
  110. <select name="tbname" id="tbname">
  111. <?=$tbstr?>
  112. </select>
  113. <input type="submit" name="Submit" value="显示">
  114. </div></td>
  115. </tr>
  116. </form>
  117. </table>
  118. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  119. <tr class="header">
  120. <td width="20%" height="25">
  121. <div align="center">日期</div></td>
  122. <td width="12%" height="25">
  123. <div align="center">发布数</div></td>
  124. <td width="12%">
  125. <div align="center">未审核数</div></td>
  126. <td width="11%"><div align="center">审发数</div></td>
  127. <td width="11%"><div align="center">审投数</div></td>
  128. <td width="12%"><div align="center">点击数</div></td>
  129. <td width="11%"><div align="center">评论数</div></td>
  130. <td width="11%"><div align="center">下载数</div></td>
  131. </tr>
  132. <?php
  133. $dr=explode('-',$date);
  134. $dr[0]=(int)$dr[0];
  135. $dr[1]=(int)$dr[1];
  136. for($j=1;$j<=31;$j++)
  137. {
  138. //检测日期合法性
  139. if(!checkdate($dr[1],$j,$dr[0]))
  140. {
  141. continue;
  142. }
  143. $d=$j;
  144. if($j<10)
  145. {
  146. $d='0'.$j;
  147. }
  148. $thisday=$date.'-'.$d;
  149. //发布数
  150. $totalnum=$empire->gettotal("select count(*) as total from {$dbtbpre}ecms_".$tbname." where userid='$userid' and ismember=0 and truetime>=".to_time($thisday." 00:00:00")." and truetime<=".to_time($thisday." 23:59:59"));
  151. //未审核数
  152. $totalchecknum=$empire->gettotal("select count(*) as total from {$dbtbpre}ecms_".$tbname."_check where userid='$userid' and ismember=0 and truetime>=".to_time($thisday." 00:00:00")." and truetime<=".to_time($thisday." 23:59:59"));
  153. //点击数
  154. $totalonclick=$empire->gettotal("select sum(onclick) as total from {$dbtbpre}ecms_".$tbname." where userid='$userid' and ismember=0 and truetime>=".to_time($thisday." 00:00:00")." and truetime<=".to_time($thisday." 23:59:59"));
  155. //评论数
  156. $totalplnum=$empire->gettotal("select sum(plnum) as total from {$dbtbpre}ecms_".$tbname." where userid='$userid' and ismember=0 and truetime>=".to_time($thisday." 00:00:00")." and truetime<=".to_time($thisday." 23:59:59"));
  157. //下载数
  158. $totaldown=$empire->gettotal("select sum(totaldown) as total from {$dbtbpre}ecms_".$tbname." where userid='$userid' and ismember=0 and truetime>=".to_time($thisday." 00:00:00")." and truetime<=".to_time($thisday." 23:59:59"));
  159. //审稿
  160. $checkhinfonum=$empire->gettotal("select count(*) as total from {$dbtbpre}ecms_".$tbname." where truetime>=".to_time($thisday." 00:00:00")." and truetime<=".to_time($thisday." 23:59:59")." and eckuid='$userid' and ismember=0");
  161. $checkqinfonum=$empire->gettotal("select count(*) as total from {$dbtbpre}ecms_".$tbname." where truetime>=".to_time($thisday." 00:00:00")." and truetime<=".to_time($thisday." 23:59:59")." and eckuid='$userid' and ismember=1");
  162. ?>
  163. <tr bgcolor="#FFFFFF">
  164. <td height="25"><div align="center">
  165. <?=$thisday?>
  166. </div></td>
  167. <td height="25"><div align="center">
  168. <?=($totalnum+$totalchecknum)?>
  169. </div></td>
  170. <td><div align="center"><?=$totalchecknum?></div></td>
  171. <td><div align="center"><?=$checkhinfonum?></div></td>
  172. <td><div align="center"><?=$checkqinfonum?></div></td>
  173. <td><div align="center"><?=$totalonclick?></div></td>
  174. <td><div align="center"><?=$totalplnum?></div></td>
  175. <td><div align="center"><?=$totaldown?></div></td>
  176. </tr>
  177. <?php
  178. }
  179. ?>
  180. </table>
  181. </body>
  182. </html>
  183. <?php
  184. db_close();
  185. $empire=null;
  186. ?>