帝国cms判断会员是否登录实例详解

发布时间:2019-09-16编辑:脚本学堂
有关帝国cms判断会员是否登录,只有登录后才可以查看内容的方法,引入一个自定义文件进行数据库的读取与会员登录判断,帝国cms权限判断程序。

cms/ target=_blank class=infotextkey>帝国cms判断会员是否登录及登录后才能看到内容的方法

适用版本6.6

效果:会员登录后才能看到手机号码,未登录时显示“登录后可见”。

1、新建show.php文件,放到e目录中。

2、show.php代码:
 

复制代码 代码示例:
<?php
require("class/connect.php");
include("class/db_sql.php");
include("class/config.php");
include("data/dbcache/class.php");
$link=db_connect();
$empire=new mysqlquery();
$classid=intval($_GET['classid']);
$id=intval($_GET['id']);
$muserid=(int)getcvar('mluserid');//用户id
$musername=RepPostVar(getcvar('mlusername'));//用户名
$mgroupid=(int)getcvar('mlgroupid');//会员组id
if($classid&&$id&&$class_r[$classid][tbname]&&$muserid)
{
$r=$empire->fetch1("select id,phone from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where id='$id' and classid='$classid' limit 1");
if($r[id])
{
?>
document.write('<li title="<?=$r[phone]?>">手机:<?=$r[phone]?></li>');
<?php
}
}
else
{
?>
document.write('<li class="businessCard-embed-content-nologin"><span>手机:</span><span class="businessCard-embed-content-nologinIcon"></span><a id="businessCard-embed-login" href="#">登录后可见</a></li>');
<?php
}
db_close();
$empire=null;
?>

3、内容模板显示调用:
 

复制代码 代码示例:
<script src="[!--news.url--]e/show.php?classid=[!--classid--]&id=[!--id--]"></script>

4、以上sql语句只是查询phone,其他字段自行修改(注:phone有两处地方的,如果修改要同时进行)

5、多字段的情况,可以参考:http://bbs.phome.net/showthread-13-89138-6.html