UserTotal.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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. $tbname=RepPostVar($_GET['tbname']);
  21. if(empty($tbname))
  22. {
  23. $tbname=$public_r['tbname'];
  24. }
  25. //数据表
  26. $b=0;
  27. $htb=0;
  28. $tbsql=$empire->query("select tbname,tname from {$dbtbpre}enewstable order by tid");
  29. while($tbr=$empire->fetch($tbsql))
  30. {
  31. $b=1;
  32. $select="";
  33. if($tbr[tbname]==$tbname)
  34. {
  35. $htb=1;
  36. $select=" selected";
  37. }
  38. $tbstr.="<option value='".$tbr[tbname]."'".$select.">".$tbr[tname]."</option>";
  39. }
  40. if($b==0)
  41. {
  42. printerror('ErrorUrl','');
  43. }
  44. if($htb==0)
  45. {
  46. printerror('ErrorUrl','');
  47. }
  48. //用户
  49. $sql=$empire->query("select userid,username from {$dbtbpre}enewsuser order by userid");
  50. ?>
  51. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  52. <html>
  53. <head>
  54. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  55. <title>用户发布统计</title>
  56. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  57. </head>
  58. <body>
  59. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  60. <tr>
  61. <td height="25">位置:<a href="UserTotal.php<?=$ecms_hashur['whehref']?>">用户发布统计</a></td>
  62. </tr>
  63. <tr>
  64. <td height="30"> 选择统计数据表:
  65. <select name="tbname" id="tbname" onchange="window.location='UserTotal.php?<?=$ecms_hashur['ehref']?>&tbname='+this.options[this.selectedIndex].value">
  66. <?=$tbstr?>
  67. </select>
  68. </td>
  69. </tr>
  70. </table>
  71. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  72. <tr class="header">
  73. <td width="19%" height="25">
  74. <div align="center">用户</div></td>
  75. <td width="8%" height="25"> <div align="center">今天发布数</div></td>
  76. <td width="8%" height="25"> <div align="center">昨天发布数</div></td>
  77. <td width="8%" height="25"> <div align="center">本月发布数</div></td>
  78. <td width="8%"> <div align="center">总发布数</div></td>
  79. <td width="7%">
  80. <div align="center">未审核数</div></td>
  81. <td width="7%"><div align="center">审发数</div></td>
  82. <td width="7%"><div align="center">审投数</div></td>
  83. <td width="8%"><div align="center">点击数</div></td>
  84. <td width="7%"><div align="center">评论数</div></td>
  85. <td width="7%"><div align="center">下载数</div></td>
  86. <td width="6%"><div align="center"></div></td>
  87. </tr>
  88. <?php
  89. $totime=time();
  90. $today=date("Y-m-d");
  91. $yesterday=date("Y-m-d",$totime-24*3600);
  92. $month=date("Y-m");
  93. //本月最大天数
  94. $maxday=date("t",mktime(0,0,0,date("m"),date("d"),date("Y")));
  95. while($r=$empire->fetch($sql))
  96. {
  97. $tquery="select count(*) as total from {$dbtbpre}ecms_".$tbname." where userid='$r[userid]' and ismember=0";
  98. $checktquery="select count(*) as total from {$dbtbpre}ecms_".$tbname."_check where userid='$r[userid]' and ismember=0";
  99. //今天发布数
  100. $todaynum=$empire->gettotal($tquery." and truetime>=".to_time($today." 00:00:00")." and truetime<=".to_time($today." 23:59:59"));
  101. $todaychecknum=$empire->gettotal($checktquery." and truetime>=".to_time($today." 00:00:00")." and truetime<=".to_time($today." 23:59:59"));
  102. //昨天发布数
  103. $yesterdaynum=$empire->gettotal($tquery." and truetime>=".to_time($yesterday." 00:00:00")." and truetime<=".to_time($yesterday." 23:59:59"));
  104. $yesterdaychecknum=$empire->gettotal($checktquery." and truetime>=".to_time($yesterday." 00:00:00")." and truetime<=".to_time($yesterday." 23:59:59"));
  105. //本月发布数
  106. $monthnum=$empire->gettotal($tquery." and truetime>=".to_time($month."-01 00:00:00")." and truetime<=".to_time($month."-".$maxday." 23:59:59"));
  107. $monthchecknum=$empire->gettotal($checktquery." and truetime>=".to_time($month."-01 00:00:00")." and truetime<=".to_time($month."-".$maxday." 23:59:59"));
  108. //所有
  109. $totalnum=$empire->gettotal($tquery);
  110. $checktotalnum=$empire->gettotal($checktquery);
  111. //总点击量
  112. $tonclickquery="select sum(onclick) as total from {$dbtbpre}ecms_".$tbname." where userid='$r[userid]' and ismember=0";
  113. $totalonclick=$empire->gettotal($tonclickquery);
  114. //总评论数
  115. $tplquery="select sum(plnum) as total from {$dbtbpre}ecms_".$tbname." where userid='$r[userid]' and ismember=0";
  116. $totalplnum=$empire->gettotal($tplquery);
  117. //总下载数
  118. $tdownquery="select sum(totaldown) as total from {$dbtbpre}ecms_".$tbname." where userid='$r[userid]' and ismember=0";
  119. $totaldown=$empire->gettotal($tdownquery);
  120. //审稿
  121. $checkhinfonum=$empire->gettotal("select count(*) as total from {$dbtbpre}ecms_".$tbname." where eckuid='$r[userid]' and ismember=0");
  122. $checkqinfonum=$empire->gettotal("select count(*) as total from {$dbtbpre}ecms_".$tbname." where eckuid='$r[userid]' and ismember=1");
  123. ?>
  124. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  125. <td height="25"><div align="center"><a href="AddUser.php?enews=EditUser&userid=<?=$r[userid]?><?=$ecms_hashur['ehref']?>" target="_blank">
  126. <u><?=$r[username]?></u>
  127. </a></div></td>
  128. <td height="25"><div align="center">
  129. <?=$todaynum+$todaychecknum?>
  130. </div></td>
  131. <td height="25"><div align="center">
  132. <?=$yesterdaynum+$yesterdaychecknum?>
  133. </div></td>
  134. <td height="25"><div align="center">
  135. <?=$monthnum+$monthchecknum?>
  136. </div></td>
  137. <td><div align="center"><a href="../ListAllInfo.php?keyboard=<?=$r[username]?>&show=2&tbname=<?=$tbname?>&sear=1<?=$ecms_hashur['ehref']?>" target="_blank">
  138. <u><?=$totalnum+$checktotalnum?></u>
  139. </a> </div></td>
  140. <td><div align="center"><a href="../ListAllInfo.php?showspecial=4&keyboard=<?=$r[username]?>&show=2&tbname=<?=$tbname?>&sear=1&ecmscheck=1&infocheck=2<?=$ecms_hashur['ehref']?>" target="_blank">
  141. <u><?=$checktotalnum?></u>
  142. </a></div></td>
  143. <td><div align="center"><?=$checkhinfonum?></div></td>
  144. <td><div align="center"><?=$checkqinfonum?></div></td>
  145. <td><div align="center"><?=$totalonclick?></div></td>
  146. <td><div align="center"><?=$totalplnum?></div></td>
  147. <td><div align="center"><?=$totaldown?></div></td>
  148. <td><div align="center"><a href="#ecms" onclick="window.open('MoreUserTotal.php?tbname=<?=$tbname?>&userid=<?=$r[userid]?>&username=<?=$r[username]?><?=$ecms_hashur['ehref']?>','ViewUserTotal','width=650,height=500,scrollbars=yes,left=300,top=150,resizable=yes');">[详细]</a></div></td>
  149. </tr>
  150. <?php
  151. }
  152. ?>
  153. </table>
  154. </body>
  155. </html>
  156. <?php
  157. db_close();
  158. $empire=null;
  159. ?>