您现在的位置是:首页 > 教程 > 帝国CMS教程帝国CMS教程

帝国CMS会员中心动态提示未读消息的方法

听兰2023-05-07 23:52:37帝国CMS教程已有人查阅

导读登陆帝国后台------模板------动态页面模板管理------头部模板在模型下面添加下面代码部分,然后在你想要放未读消息位置调用一下代码 一下代码CSS 样式自行修改

登陆帝国后台------模板------动态页面模板管理------头部模板在模型下面添加下面代码部分

<?
//模型
$tgetmid=(int)$_GET['mid'];
if($tmgetuserid){
$member=$empire->fetch1("select userpic from phome_enewsmemberadd where userid='$tmgetuserid'");

$msgcount=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsqmsg  where  to_username='$user[username]'
and haveread='0'");

}
?>

然后在你想要放未读消息位置调用一下代码 一下代码CSS 样式自行修改

<?
if($msgcount>0){
?>
<!-- 新消息start -->
<li id="topmenu_ZCenterCart">
<a href="#ecms" onclick="window.open('<?=$public_r['newsurl']?>e/member/vipmsg/index.php','','width=680,height=500,scrollbars=yes,resizable=yes');">
<font color=red> 你有未读消息
<?=$msgcount?>条</font>
</a>
</li>
<!-- 新消息end -->
<?
}
?>

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

相关标签