东方星雨

简单网络

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

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

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

调用帝国CMS会员头像教程

2019-05-02 站长 站长日志

帝国CMS调用会员头像代码

<?php
$userr=$empire->fetch1("select * from {$dbtbpre}enewsmemberadd where userid='$user[userid]' limit 1");
?>

然后再用

<?=$userr[userpic]?>

<img src="<?=$userr[userpic]?$userr[userpic]:'/e/data/images/nouserpic.gif'?>

"这样是没上传图片时调用默认图片 上传了就用新图片
注意:一定要先加代码在引用 及:代码要在引用字段的前面  

文章评论