cp.php
4.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
if(!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" cellspacing="1" cellpadding="3" class="tableborder">
<tr class="header">
<td height="25">會員中心</td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF"> <table width="100%" border="0" cellspacing="1" cellpadding="3">
<tr>
<td width="220" valign="top">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="6">
<tr>
<td height="25"><div align="center"><img src="<?=$userpic?>" width="158" height="158" style="border:1px solid #cccccc;" /></div></td>
</tr>
<tr>
<td height="25"><div align="center"><a href="../../space/?userid=<?=$user[userid]?>" target="_blank">
<?=$user[username]?>
</a></div></td>
</tr>
</table>
</td>
<td> <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<tr bgcolor="#FFFFFF">
<td width="15%" height="25">用戶ID:</td>
<td width="85%" height="25">
<?=$user[userid]?>
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">用戶名:</td>
<td height="25">
<?=$user[username]?>
(<a href="../../space/?userid=<?=$user[userid]?>" target="_blank">我的會員空間</a>)
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="33%" height="25">註冊時間:</td>
<td width="67%" height="25">
<?=$registertime?>
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">會員等級:</td>
<td height="25">
<?=$level_r[$r[groupid]][groupname]?>
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">剩餘有效期:</td>
<td height="25">
<?=$userdate?>
天 </td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">剩餘點數:</td>
<td height="25">
<?=$r[userfen]?>
點</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">帳戶餘額:</td>
<td height="25">
<?=$r[money]?>
元 </td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="25">新消息:</td>
<td height="25">
<?=$havemsg?>
</td>
</tr>
</table>
<div align="center"> </div></td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="20">快速入口</td>
</tr>
<tr>
<td height="36" bgcolor="#FFFFFF"><table width="100%" border="0" cellspacing="1" cellpadding="3">
<tr>
<td width="16%" height="25">
<div align="center"><a href="../EditInfo/"><img src="../../data/images/membercp/userinfo.gif" width="16" height="16" border="0" align="absmiddle">
修改資料</a></div></td>
<td width="16%">
<div align="center"><a href="../msg/"><img src="../../data/images/membercp/msg.gif" width="16" height="16" border="0" align="absmiddle">
站內消息</a></div></td>
<td width="16%">
<div align="center"><a href="../mspace/SetSpace.php"><img src="../../data/images/membercp/space.gif" width="16" height="16" border="0" align="absmiddle">
空間設置</a></div></td>
<td width="16%">
<div align="center"><a href="../../DoInfo/"><img src="../../data/images/membercp/info.gif" width="16" height="16" border="0" align="absmiddle">
管理信息</a></div></td>
<td width="16%">
<div align="center"><a href="../fava/"><img src="../../data/images/membercp/favitorie.gif" width="16" height="16" border="0" align="absmiddle">
管理收藏夾</a></div></td>
<td width="16%">
<div align="center"><a href="../friend/"><img src="../../data/images/membercp/friend.gif" width="16" height="16" border="0" align="absmiddle">
我的好友</a></div></td>
</tr>
</table></td>
</tr>
</table>
<?php
require(ECMS_PATH.'e/template/incfile/footer.php');
?>