帝国cms JS登陆状态模板中调用显示会员收到的短消息数_帝国Cms教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!

帝国cms JS登陆状态模板中调用显示会员收到的短消息数
1、在ememberloginloginjs.php中查找“ $mhavelogin=1; ”在其下面加上

  1. $user=islogin(); 

2、在“$mhavelogin=1;”下的 “//数据”下加上

  1. $msgcount=$empire->gettotal("select count(*) as total from phome_enewsqmsg  where  to_username='$user[username]'"); 

3、在JS调用登陆状态模板中调用

  1. <?=$msgcount?> 

即可实现调用具体信息数

注意:上面的修改顺序:先修改3再修改1、2 (因为先修改1、2再修改3时loginjs.php文件会被替换成原来的文件内容)

统计新消息条数(把上面的2替换即可)

  1. $msgcount=$empire->gettotal("select count(*) as total from phome_enewsqmsg  where haveread='0' and to_username='$user[username]'"); 
 有需要的可以记录下来,希望可以帮助到你。

查看更多 帝国cms教程  帝国cms模板

来源:模板无忧//所属分类:帝国Cms教程/更新时间:2020-05-22
相关帝国Cms教程