免费一级码无码婬片AA,多姿,国产成人精品日本亚洲18图 ,亚洲欧美视频一区,久久久久国产精品一区

做網(wǎng)站找實(shí)速,專業(yè)網(wǎng)站制作設(shè)計(jì)平臺(tái)
首頁 > 課堂 > 網(wǎng)站技術(shù) > 詳情
網(wǎng)站標(biāo)簽 / Tags

帝國CMS不同會(huì)員組查看文章權(quán)限判斷在靜態(tài)頁面的實(shí)現(xiàn)方法

2020-02-16 15:39:50   來源:實(shí)速網(wǎng)絡(luò)|網(wǎng)站建設(shè)|網(wǎng)站設(shè)計(jì)|網(wǎng)站優(yōu)化|網(wǎng)站仿制|網(wǎng)站SEO|網(wǎng)站推廣|空間域名|主機(jī)VPS|服務(wù)器|網(wǎng)站源碼|網(wǎng)站模版   瀏覽: 次
帝國CMS不同會(huì)員組查看文章權(quán)限判斷在靜態(tài)頁面的實(shí)現(xiàn)方法 發(fā)布時(shí)間:2019-12-14 來源:未知 瀏覽: 關(guān)鍵詞:帝國CMS 判斷 會(huì)員組 靜態(tài)頁面 文章權(quán)限

帝國CMS不同會(huì)員組查看文章權(quán)限判斷在靜態(tài)頁面的實(shí)現(xiàn)方法

發(fā)布時(shí)間:2019-12-14 來源:未知 瀏覽: 關(guān)鍵詞:帝國CMS 判斷 會(huì)員組 靜態(tài)頁面 文章權(quán)限 

帝國CMS不同會(huì)員組查看文章權(quán)限判斷在靜態(tài)頁面的實(shí)現(xiàn)方法

<?phprequire("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']);//當(dāng)前信息所屬欄目ID$id=intval($_GET['id']);//當(dāng)前信息ID$muserid=(int)getcvar('mluserid');//用戶id$musername=RepPostVar(getcvar('mlusername'));//用戶名$mgroupid=(int)getcvar('mlgroupid');//會(huì)員組idif($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){//判斷會(huì)員組id為2?>document.write('標(biāo)題:<?=$r[title]?>');//這里自行修改提示文字、要展示的內(nèi)容等<?php}elseif($tmgetgroupid==1) //判斷會(huì)員組id為1?>document.write('此信息需要VIP權(quán)限才可以查看');//這里自行修改提示文字、要展示的內(nèi)容等<?php}else{?>document.write('登錄后才能查看');//這里自行修改提示文字、要展示的內(nèi)容等<?php}db_close();$empire=null;?>

把以上代碼存為show.php文件,把show.php放到e目錄里。

內(nèi)容模板顯示調(diào)用

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

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

責(zé)任編輯:實(shí)速科技