实现这个效果有两种
  • 第一种:runphp=’yes’
织梦自带的runphp参数,在您要统计数目的处插手以下代码:
{dede:field.typeid runphp='yes'}   
global $dsql;   
$row = $dsql->GetOne("select count(*) as dd from dede_archives where typeid = @me");   
@me = $row['dd'];   
{/dede:field.typeid}
  • 第二种:function
打来/include/extend.func.php文件
在最底部的
?>
上一行加入代码:
function _GetTypeNum($tid){   
global $dsql;   
$row = $dsql->GetOne("select count(*) as dd from dede_archives where typeid = $tid");   
return $row['dd'];   
}