| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 | <?phpif(!defined('InEmpireCMS')){	exit();}?><?php$public_diyr['pagetitle']='消费记录';$url="<a href=../../../>首页</a> > <a href=../cp/>会员中心</a> > 消费记录";require(ECMS_PATH.'e/template/incfile/header.php');?>        <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">          <tr class="header">             <td width="55%" height="25"><div align="center">标题</div></td>            <td width="16%" height="25"><div align="center">扣除点数</div></td>            <td width="29%" height="25"><div align="center">时间</div></td>          </tr>	<?php	while($r=$empire->fetch($sql))	{		if(empty($class_r[$r[classid]][tbname]))		{continue;}		$nr=$empire->fetch1("select title,isurl,titleurl,classid from {$dbtbpre}ecms_".$class_r[$r[classid]][tbname]." where id='$r[id]' limit 1");		//标题链接		$titlelink=sys_ReturnBqTitleLink($nr);		if(!$nr['classid'])		{			$r['title']="此信息已删除";			$titlelink="#EmpireCMS";		}		if($r['online']==0)		{			$type='下载';		}		elseif($r['online']==1)		{			$type='观看';		}		elseif($r['online']==2)		{			$type='查看';		}		elseif($r['online']==3)		{			$type='发布';		}	?>          <tr bgcolor="#FFFFFF">             <td height="25">[              <?=$type?>              ]  <a href='<?=$titlelink?>' target='_blank'>               <?=$r[title]?>              </a> </td>            <td height="25"><div align="center">                 <?=$r[cardfen]?>              </div></td>            <td height="25"><div align="center">                 <?=date("Y-m-d H:i:s",$r[truetime])?>              </div></td>          </tr>          <?	}	?>          <tr bgcolor="#FFFFFF">             <td height="25" colspan="3">               <?=$returnpage?>            </td>          </tr>        </table><?phprequire(ECMS_PATH.'e/template/incfile/footer.php');?>
 |