/**
* 获取副栏目链接和名称
*/
if(!function_exists('GetTypeid2'))
{
function GetTypeid2($typeid2)
{
global $dsql;
$result = '';
$query = "SELECT * FROM `dede_arctype` WHERE id IN($typeid2) AND ishidden<>1 ORDER BY FIELD(id,$typeid2)";
$dsql->Execute('t',$query);
while($row = $dsql->GetArray('t'))
{
$typeurl = GetOneTypeUrlA($row);
$result.= ($result=='' ? "<a href='{$typeurl}'>{$row['typename']}</a>" : ','."<a href='{$typeurl}'>{$row['typename']}</a>");
}
return $result;
}
}
|