downbak.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. if(!defined('InEmpireCMS'))
  3. {
  4. exit();
  5. }
  6. ?>
  7. <?php
  8. $public_diyr['pagetitle']='消费记录';
  9. $url="<a href=../../../>首页</a>&nbsp;>&nbsp;<a href=../cp/>会员中心</a>&nbsp;>&nbsp;消费记录";
  10. require(ECMS_PATH.'e/template/incfile/header.php');
  11. ?>
  12. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  13. <tr class="header">
  14. <td width="55%" height="25"><div align="center">标题</div></td>
  15. <td width="16%" height="25"><div align="center">扣除点数</div></td>
  16. <td width="29%" height="25"><div align="center">时间</div></td>
  17. </tr>
  18. <?php
  19. while($r=$empire->fetch($sql))
  20. {
  21. if(empty($class_r[$r[classid]][tbname]))
  22. {continue;}
  23. $nr=$empire->fetch1("select title,isurl,titleurl,classid from {$dbtbpre}ecms_".$class_r[$r[classid]][tbname]." where id='$r[id]' limit 1");
  24. //标题链接
  25. $titlelink=sys_ReturnBqTitleLink($nr);
  26. if(!$nr['classid'])
  27. {
  28. $r['title']="此信息已删除";
  29. $titlelink="#EmpireCMS";
  30. }
  31. if($r['online']==0)
  32. {
  33. $type='下载';
  34. }
  35. elseif($r['online']==1)
  36. {
  37. $type='观看';
  38. }
  39. elseif($r['online']==2)
  40. {
  41. $type='查看';
  42. }
  43. elseif($r['online']==3)
  44. {
  45. $type='发布';
  46. }
  47. ?>
  48. <tr bgcolor="#FFFFFF">
  49. <td height="25">[
  50. <?=$type?>
  51. ] &nbsp;<a href='<?=$titlelink?>' target='_blank'>
  52. <?=$r[title]?>
  53. </a> </td>
  54. <td height="25"><div align="center">
  55. <?=$r[cardfen]?>
  56. </div></td>
  57. <td height="25"><div align="center">
  58. <?=date("Y-m-d H:i:s",$r[truetime])?>
  59. </div></td>
  60. </tr>
  61. <?
  62. }
  63. ?>
  64. <tr bgcolor="#FFFFFF">
  65. <td height="25" colspan="3">
  66. <?=$returnpage?> </td>
  67. </tr>
  68. </table>
  69. <?php
  70. require(ECMS_PATH.'e/template/incfile/footer.php');
  71. ?>