东方星雨

简单网络

一个爱好网络的80后男站长。

关注我东方星雨个人微信号:476847113

您现在的位置是:首页 > 站长日志

帝国CMS不同会员组查看文章权限判断在静态页面的实现方法

2014-09-21 站长 站长日志 1822 6

帝国CMS不同会员组查看文章权限判断在静态页面的实现方法

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
<?php
require("class/connect.php");
 
include("class/db_sql.php");
 
include("class/config/config.php");
 
include("data/dbcache/class.php");
 
$link=db_connect();
 
$empire=new mysqlquery();
 
$classid=intval($_GET['classid']);//当前信息所属栏目ID
 
$id=intval($_GET['id']);//当前信息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,title from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where id='$id' and classid='$classid' limit 1");
 
if($mgroupid==2){//判断会员组id为2
 
?>
 
document.write('标题:<?=$r[title]?>');//这里自行修改提示文字、要展示的内容等
 
<?php
 
}elseif($tmgetgroupid==1) //判断会员组id为1
 
?>
 
document.write('此信息需要VIP权限才可以查看');//这里自行修改提示文字、要展示的内容等
 
<?php
 
}else{
 
?>
 
document.write('登录后才能查看');//这里自行修改提示文字、要展示的内容等
 
<?php
 
}
 
db_close();
 
$empire=null;
 
?>

把以上代码存为show.php文件,把show.php放到e目录里。

内容模板显示调用

1
<script src="[!--news.url--]e/show.php?classid=[!--classid--]&id=[!--id--]"></script>

上面的sql语句只是查询title,其他字段自行修改

文章评论