實(shí)現(xiàn)這個效果有兩種
  • 第一種:runphp=’yes’
織夢自帶的runphp參數(shù),在您要統(tǒng)計(jì)數(shù)目的處插手以下代碼:
{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'];   
}