东方星雨

简单网络

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

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

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

帝国CMS二次开发调用指定tags分类下的信息

2020-04-10 站长 站长日志

帝国CMS调用指定tags分类信息代码

1
2
3
4
5
6
7
8
9
10
11
<?
$path=$_GET[path];
$r=$empire->fetch1("select tagname,tagkey,tagintro,cid,path from {$dbtbpre}enewstags where path='$path' limit 1");
$tagsql=$empire->query("select tagid,tagname,path from {$dbtbpre}enewstags where cid='$r[cid]'");
while($r=$empire->fetch($tagsql))
{
?>
<a href="/tag/<?=$r[path]?>.html"  title="<?=$r[tagname]?>"><?=$r[tagname]?></a>
<?
}
?>

cid=1为tags分类ID为1的信息

文章评论