位置:首页 > CMS技巧 > 帝国cms
帝国cms 使登陆状态模板支持调用会员头像
日期:2023-01-05 人气:

大家好,对使登陆状态模板支持调用会员头像感兴趣的小伙伴,下面一起跟随三零脚本的小编来看看使登陆状态模板支持调用会员头像的例子吧。

打开e/data/template/loginiframetemp.txt

$r=$empire->fetch1("select ".$user_userid.",".$user_username.",".$user_group.",".$user_userfen.",".$user_money.","
.$user_userdate.",".$user_havemsg.",".$user_checked." from ".$user_tablename." where ".$user_userid."='$myuserid'
and ".$user_rnd."='$myrnd' limit 1");

下面 添加



$m=$empire->fetch1("select userpic from {$user_tbpre}enewsmemberadd where userid='$myuserid' limit 1");
        $userpic=$m['userpic']?$m['userpic']:$public_r[newsurl].'e/data/images/nouserpic.gif';



在登录状态模板中使用<?=$userpic?>调用会员头像

您可能感兴趣的文章