저두 날짜를 비교해서 할려고 했는데 phpadmin에 가보면document_count 필드에 전체 카운트가 저장되어있네요.위의 소스는 저장된 데이타만 출력하고 있습니다. 월별로 필드를 생성하지 않는한방법이 없을것 같네요.질문에 답해주셔서 감사합니다.
<!--@if($category_list)-->
<div class="blogCategory">
<div class="blogTitleBox">
<h2><a href="{getUrl('','mid',$module_info->mid)}">{$module_info->browser_title} Category</a></h2>
</div>
<ul class="categoryList">
<!--@foreach($category_list as $key => $val)-->
<li <!--@if($val->depth)-->style="margin-left:{$val->depth*8}px;"<!--@end--> <!--@if($val->selected)-->class="on"<!--@end-->><a href="{getUrl('','mid',$val->mid,'category',$val->category_srl)}">{$val->title}</a><!--@if($val->document_count)-->
<!--@if($val->document_count)--> // 카운트를 출력하는 부분
<span class="documentCount">({$val->document_count})</span><!--@end--></li>
<!--@end-->
</ul>
</div>
<!--@else-->
<!--@end-->
변수를 알고 싶은데요?