그누보드 bbs/list.php 개선방안

출처 : 정확한 출처는 확인이 안되고 neojzs 라는 분이 그누보드 커뮤니티에 올리
신 것으로 추정됨

파일명 : bbs/list.php

// 원글만 얻는다. (코멘트의 내용도 검색하기 위함)
$sql = ”select distinct wr_parent from $write_table where $sql_search”;
$result = sql_query($sql);
$total_count = mysql_num_rows($result);
// neojzs 최적화 : 20080621
// 원글만 얻는다. (코멘트의 내용도 검색하기 위함)
$sql= ”select count(distinct wr_parent) as cnt from $write_table where $sql_search”;
$row = sql_fetch($sql);
$total_count = $row[cnt];

About KENNETH 19688 Articles
지락문화예술공작단

Be the first to comment

Leave a Reply

Your email address will not be published.


*


이 사이트는 스팸을 줄이는 아키스밋을 사용합니다. 댓글이 어떻게 처리되는지 알아보십시오.