熊猫办公系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

56 lines
1.5 KiB

<?php
if(!defined('InEmpireCMS'))
{
exit();
}
?>
<?php
$public_diyr['pagetitle']='会员中心';
$url="<a href=../../../>首页</a>&nbsp;>&nbsp;<a href=../cp/>会员中心</a>";
require(ECMS_PATH.'e/template/incfile/header.php');
?>
<!-- vip充值记录 -->
<?if ($groupid<2){?>
<!-- 不是会员提示 -->
<div class='tips'>
<div class='tips2'>立即获得VIP服务,畅享一站式精品内容无限下载特权</div>
<a href='/e/member/buygroup/' target="_blank" class='tips3'>立即开通</a>
</div>
<?}else{?>
<!-- vip充值记录 -->
<div class='vip-log'>
<div class='white'>
<table>
<tr>
<th>赞助时间</th>
<th>会员级别</th>
<th>赞助金额</th>
<th>注意事项</th>
</tr>
<?php
//取得栏目下的子栏目
$pay=$empire->query("select * from {$dbtbpre}enewsbuybak where userid='$userid' order by buytime desc limit 10");
while($bqr=$empire->fetch($pay))
{
$buyr=$empire->fetch1("select * from {$dbtbpre}enewsbuygroup where gname='$bqr[card_no]'");
?>
<tr>
<td><?=$bqr['buytime']?></td>
<td><?=$bqr['card_no']?></td>
<td><?=$bqr['money']?>元</td>
<td><?=$buyr['gsay']?></td>
</tr>
<?}?>
</table>
</div>
</div>
<!-- 不是会员提示 -->
<div class='tips'>
</div>
<?}?>
<!-- 个人主页 -->
<div class='you-like'>
</div>
<?php
require(ECMS_PATH.'e/template/incfile/footer.php');
?>