免费PHP万能建站系统_社区团购SaaS_商城系统_软件开发_虚拟币交易所系统_矿机系统_微信钻石投票系统_成品源码
标题:
用此方法,让会员轻松看到自已的充值记录!
[打印本页]
作者:
ourphp
时间:
2016-9-14 16:08
标题:
用此方法,让会员轻松看到自已的充值记录!
用此方法,让会员轻松看到自已的充值记录!
注:此方法在v1.6.3以下版本有效,1.6.3以上版本不需要此插件,我们会直接整合进去。
第一步,打开 /templates/user/cn_userpay.html, 找到<li>网银充值</li> 在它下面 添加如下代码:
<li onclick="setTab(0,2)">充值记录</li>
复制代码
第二步,找到
[.else.]
<div class="nopay">网银充值暂时关闭,请选择其它充值方式!</div>
[./if.]
在
</ul> 下面 添写如下代码:
<ul style=" padding:0px 15px 0 15px;">
[.*充值列表开始*.]
<style type="text/css">
tr,td { padding:6px;}
</style>
<table width="100%" border="0" style="text-align:left; font-size:12px; border-collapse:collapse;">
<tr>
<td colspan="6">我的充值列表</td>
</tr>
<tr style="background:url([.$webpath.]skin/clubgb.png) repeat-x;">
<td width="50"><div align="center">ID</div></td>
<td>充值账号</td>
<td width="100"><div align="center">充值金额</div></td>
<td width="100"><div align="center">充值积分</div></td>
<td width="200">备注信息</td>
<td width="150"><div align="center">充值时间</div></td>
</tr>
[.foreach $paylist as $op.]
<tr bgcolor="[.cycle values="#ffffff,#f5f5f5".]">
<td><div align="center">[.$op.id.]</div></td>
<td>[.$op.email.]</td>
<td><div align="center">[.$op.money.]</div></td>
<td><div align="center">[.$op.integral.]</div></td>
<td>[.$op.content.]</td>
<td><div align="center">[.$op.time.]</div></td>
</tr>
[./foreach.]
</table>
[.*充值列表结束*.]
</ul>
复制代码
第三步,打开 /client/user/ourphp_userview.class.php ,找到 $smarty->assign('mail',ourphp_usermail()); 并在它的上面添加如下代码:
function ourphp_userpaylist(){
global $conn,$db;
$ourphptotal=mysql_fetch_assoc($ourphptotal);
$query = $db-> sqllist("select `id`,`OP_Useremail`,`OP_Usermoney`,`OP_Userintegral`,`OP_Usercontent`,`time` from `ourphp_userpay` where `OP_Useremail` = '".$_SESSION['username']."'");
$rows = array();
while($ourphp_rs = mysql_fetch_array($query)){
$rows[] = array(
'id' => $ourphp_rs[0],
'email' => $ourphp_rs[1],
'money' => $ourphp_rs[2],
'integral' => $ourphp_rs[3],
'content' => $ourphp_rs[4],
'time' => $ourphp_rs[5],
);
}
return $rows;
}
复制代码
第四步,找到 $smarty->assign('integrallist',ourphp_userintegral()); 并在它下面 添加如下代码:
$smarty->assign('paylist',ourphp_userpaylist());
复制代码
完成。用户登录会员中心即可看到充值记录
欢迎光临 免费PHP万能建站系统_社区团购SaaS_商城系统_软件开发_虚拟币交易所系统_矿机系统_微信钻石投票系统_成品源码 (http://ourphp.net/club/)
Powered by Discuz! X3.2