ListDownBak.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require("../../member/class/user.php");
  7. require "../".LoadLang("pub/fun.php");
  8. require("../../data/dbcache/MemberLevel.php");
  9. $link=db_connect();
  10. $empire=new mysqlquery();
  11. $editor=1;
  12. //验证用户
  13. $lur=is_login();
  14. $logininid=$lur['userid'];
  15. $loginin=$lur['username'];
  16. $loginrnd=$lur['rnd'];
  17. $loginlevel=$lur['groupid'];
  18. $loginadminstyleid=$lur['adminstyleid'];
  19. //ehash
  20. $ecms_hashur=hReturnEcmsHashStrAll();
  21. //验证权限
  22. CheckLevel($logininid,$loginin,$classid,"member");
  23. $userid=(int)$_GET['userid'];
  24. $username=ehtmlspecialchars($_GET['username']);
  25. $search="&username=".$username."&userid=".$userid.$ecms_hashur['ehref'];
  26. $page=(int)$_GET['page'];
  27. $page=RepPIntvar($page);
  28. $start=0;
  29. $line=20;//每页显示条数
  30. $page_line=20;//每页显示链接数
  31. $offset=$page*$line;//总偏移量
  32. $totalquery="select count(*) as total from {$dbtbpre}enewsdownrecord where userid='$userid'";
  33. $num=$empire->gettotal($totalquery);//取得总条数
  34. $query="select * from {$dbtbpre}enewsdownrecord where userid='$userid'";
  35. $query=$query." order by truetime desc limit $offset,$line";
  36. $sql=$empire->query($query);
  37. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  38. ?>
  39. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  40. <html>
  41. <head>
  42. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  43. <title>消费记录</title>
  44. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  45. </head>
  46. <body>
  47. <table width="98%%" border="0" align="center" cellpadding="3" cellspacing="1">
  48. <tr>
  49. <td>查看<b><?=$username?></b>消费记录</td>
  50. </tr>
  51. </table>
  52. <br>
  53. <table width="98%%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  54. <tr class="header">
  55. <td width="8%"><div align="center">类型</div></td>
  56. <td width="59%" height="25"><div align="center">标题</div></td>
  57. <td width="10%" height="25"><div align="center">扣除点数</div></td>
  58. <td width="23%" height="25"><div align="center">时间</div></td>
  59. </tr>
  60. <?php
  61. while($r=$empire->fetch($sql))
  62. {
  63. if($r['online']==0)
  64. {
  65. $type='下载';
  66. }
  67. elseif($r['online']==1)
  68. {
  69. $type='观看';
  70. }
  71. elseif($r['online']==2)
  72. {
  73. $type='查看';
  74. }
  75. elseif($r['online']==3)
  76. {
  77. $type='发布';
  78. }
  79. ?>
  80. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  81. <td><div align="center"><?=$type?></div></td>
  82. <td height="25"><div align="center"> <a href='../../public/InfoUrl?classid=<?=$r[classid]?>&id=<?=$r[id]?>' target=_blank>
  83. <?=$r[title]?>
  84. </a> </div></td>
  85. <td height="25"><div align="center">
  86. <?=$r[cardfen]?>
  87. </div></td>
  88. <td height="25"><div align="center">
  89. <?=date("Y-m-d H:i:s",$r[truetime])?>
  90. </div></td>
  91. </tr>
  92. <?
  93. }
  94. db_close();
  95. $empire=null;
  96. ?>
  97. <tr bgcolor="#FFFFFF">
  98. <td height="25" colspan="4">&nbsp;&nbsp;
  99. <?=$returnpage?>
  100. </td>
  101. </tr>
  102. </table>
  103. </body>
  104. </html>