版本6.6
效果是:會員登錄后才能看到手機號碼,未登錄時顯示“登錄后可見”
1、新建show.php文件,放到e目錄里下面;
2、show.php內(nèi)容以下:
<?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、內(nèi)容模板顯示調(diào)用:
<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
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: 帝國cms二次開發(fā)判斷會員是否登錄 登錄后才能看到內(nèi)容