【小编推荐】destoon首页显示供应、企业、资讯的条数的方法之一

2014-10-14   |   发布者:梁国芳   |   查看:3320次

destoon

destoon的模板里面是支持php的代码的,我们可以直接在模板里面查询出来即可的。

 

 <ul>
            {php $sellcount=$db->get_one("select COUNT(*) AS num FROM ".$DT_PRE."sell WHERE status=3");}  
             <li>共有{$sellcount[num]}条供应</li>
                {php $company=$db->get_one("select COUNT(*) AS num FROM ".$DT_PRE."member WHERE groupid>5");}
             <li>共有{$company[num]}个企业</li>
                {php $newcount=$db->get_one("select COUNT(*) AS num FROM ".$DT_PRE."article_21 WHERE status=3");}
             <li>共有{$newcount[num]}条资讯</li>

</ul>

 

页面显示当前的日期的方法:{date('Y-m-d',$DT_TIME)}

 

destoon首页显示供应、企业、资讯的条数的方法之一