포럼
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
xe에서 사용되는 문법에 관한 자료는 어디에서 볼수 있을까요?
2011.07.17 11:57
특정게시판에 현재 등록된 글의 갯수를 알아내기 위한 코드인데요....혹시 where module_srl=52
에서 특정게시판의 모듈번호가 아닌 제가 등록한 모듈이름(예: xxx_board )으로 지정해서 구하는 방법은 없나요?
그리고 xe에서 사용되는 이러한 문법에 관한 자료는 어디에서 볼수 있을까요?
where module_srl=52 이 아닌 where ??????= xxx_board(게시판 모듈이름)
----------------------------------------------------------------------------------------
{@
$oDB = &DB::getInstance();
$query = $oDB->_query('select count(*) as test from xe_documents where module_srl=52');
$result = $oDB->_fetch($query);
}
{$result->test}
에서 특정게시판의 모듈번호가 아닌 제가 등록한 모듈이름(예: xxx_board )으로 지정해서 구하는 방법은 없나요?
그리고 xe에서 사용되는 이러한 문법에 관한 자료는 어디에서 볼수 있을까요?
where module_srl=52 이 아닌 where ??????= xxx_board(게시판 모듈이름)
----------------------------------------------------------------------------------------
{@
$oDB = &DB::getInstance();
$query = $oDB->_query('select count(*) as test from xe_documents where module_srl=52');
$result = $oDB->_fetch($query);
}
{$result->test}
댓글 3
-
ezi
2011.07.17 15:43
-
SMaker
2011.07.18 17:17
xe_documents 테이블과 xe_modules 테이블을 join하면 가능합니다. -
송동우
2011.07.20 09:58
$query = $oDB->_query('select count(*) as test from xe_documents, xe_modules where xe_documents.module_srl = xe_modules.module_srl and xe_modules.mid = "모듈명"');
module_srl만 있을뿐이죠..