帝國CMS做網(wǎng)站會員中心的時候需要在會員中心首頁調用網(wǎng)站最新文章,,我們都知道帝國CMS自帶的會員中心并沒有調用網(wǎng)站最新文章,,于是百度了一下找到的方法如下:
在需要調用文章的地方插入如下代碼:
<?php $infosql=$empire->query("select * from phome_ecms_news order by newstime desc limit 10"); while($info=$empire->fetch($infosql)) {?>
<dd><span><a href="<?=$info[titleurl]?>" target="_blank"><?=$info[title]?></a><em><?=date('Y-m-d',$info[newstime])?></em></span></dd>
<?php }?>
以上代碼將調用帝國CMS “新聞系統(tǒng)數(shù)據(jù)表”下的10篇最新文章,!如果你并沒有用新聞系統(tǒng)數(shù)據(jù)表而是用文章系統(tǒng)數(shù)據(jù)表,,只需要將代碼中:
phome_ecms_news 修改為 phome_ecms_article
以上代碼調用的條數(shù)為10條最新文章,如需調用5條,,只需修改“limit 10”為“limit 5”即可,!
至于樣式自己修改吧!