东方星雨

简单网络

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

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

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

国CMS会员中心调用发布的所有信息列表的方法

2018-10-23 站长 站长日志

通过以下方法,可以在会员中心任意页面,比如会员中心首页,以帝国CMS7.0为例,调用会员投稿发布的所有信息列表:
<?php
$spacesql=$empire->query("select * from phome_ecms_shop where userid='$user[userid]' and ismember=1 order by newstime desc limit 10");
while($spacer=$empire->fetch($spacesql))
{
$titleurl=sys_ReturnBqTitleLink($spacer);//链接
?>
<a href="<?=$titleurl?>"><?=$spacer[title]?></a><br>
<?php
}
?>
这是根据数据表来查询调用的,修改成需要的数据表

文章评论