东方星雨

简单网络

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

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

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

帝国cms wap模板中调用栏目的分类

2018-12-06 站长 站长日志

我们在帝国wap模板中调用栏目导航的方法,代码如下:


<?php
$sqld=$empire->query("select * from {$dbtbpre}enewsclass where bclassid=0 and showclass=0  order by myorder,classid limit 0,10");
while($rd=$empire->fetch($sqld))
{
$classurl="list.php?classid=".$rd[classid]."&bclassid=".$bclassid;
?>
<li class="yi-nav-li"><a href="<?=$classurl?>"><?=DoWapClearHtml($rd[classname])?></a></li>
<?php
}
?>

文章评论