东方星雨

简单网络

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

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

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

帝国cms列表页调用用户发布者的用户名头像

2018-08-15 站长 站长日志

帝国cms列表页调用用户发布者的用户名头像标签代码
 

$uid=$empire->fetch1("select * from {$dbtbpre}enewsmemberadd where userid={$r[userid]}");

if(empty($uid[userpic]))

{

$uid[userpic]='/e/data/images/nouserpic.gif';

}

$newimg='';

$newim='';

if($r[ismember]==0)

{

$newimg='[!--username--]';

$newim=' <img src="'.$uid[userpic].'"    />';

}

else  if($r[ismember]==1)

{

$newimg='<a href="/e/space/?username=[!--username--]" target="_blank">[!--username--]</a>';

$newim='<a href="/e/space/?username=[!--username--]" target="_blank"><img src="'.$uid[userpic].'"    /></a>';

}

$listtemp='<p class="Image_text">'.$newim.'</p> <p class="user_name">'.$newimg.'</p>';

文章评论