首页 > CMS > 帝国Empire > 正文

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

2024-08-28 12:26:38
字体:
来源:转载
供稿:网友

帝国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的信息

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表