묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
module_srl 값을 자동으로 받아와서 수식에 넣고 싶은데 종합이 안되네요...
2012.02.08 15:27
해당 모듈의 게시물 갯수 값을 받아오는 부분을 만들고 있습니다.
예전 묻고 답하기를 찾아보니
{@
$oDB = &DB::getInstance();
$query = $oDB->_query('select count(*) as total from xe_documents where module_srl = 모듈번호');
$result = $oDB->_fetch($query);
}
{$result->total}
이렇게 출력하면 된다고 하시는걸 보았는데 모듈번호에 64 등 실제 모듈 번호를 적어주면 잘 나옵니다.
근데 실제 모듈 번호를 적으려면 게시판마다 스킨을 따로 만들어야해서 게시판별 모듈 번호를 바로 받아오고 싶은데...
{$module_info->module_srl}
이렇게 입력하면 모듈번호가 나온다는 것까지는 알았는데요.
{@
$oDB = &DB::getInstance();
$query = $oDB->_query('select count(*) as total from xe_documents where module_srl = {$module_info->module_srl}');
$result = $oDB->_fetch($query);
}
이렇게는 동작하지 않더군요...
좋은 방법이 없을까요?
$query = $oDB->_query('select count(*) as total from xe_documents where module_srl = '.$module_info->module_srl);