Copyright @ 2015-2020 织梦园 版权所有 Power by DedeCms
鲁ICP备15039853号-1

模板标签 TAG标签 网站地图 XML地图 今日更新 返回顶部
if ( ! function_exists('GetTags'))
{
function GetTags($aid)
{
global $dsql;
$tags = '';
$query = "SELECT tag FROM `dede_taglist` WHERE aid='$aid' ";
$dsql->Execute('tag',$query);
while($row = $dsql->GetArray('tag'))
{
$tags .= ($tags=='' ? $row['tag'] : ','.$row['tag']);
}
return $tags;
}
}
|
if ( ! function_exists('GetTags'))
{
function GetTags($aid)
{
global $dsql;
$sql = "select tid from dede_taglist where aid='$aid' group by tid ";
$dsql->Execute('ala',$sql);
while($row=$dsql->GetObject('ala')){
$url=nic_tag_url($row->tid);
if ($arcRow = $dsql->GetOne("select * from dede_tagindex where id='".$row->tid."' ")) $tag=$arcRow["tag"];
else $tag="";
$str.=" <a href='".$url."' target=_blank><b>".$tag."</b></a> ";
}
return $str;
}
}
|