특정게시판 조회수별로 최신글 뽑아낼수없을까요? 정보
특정게시판 조회수별로 최신글 뽑아낼수없을까요?본문
오류가 나는곳의 주소를 알려주시면 더 빠르고 정확하게 답변 받을 수 있습니다.
오류 주소 :
특정게시판의 글중에서 조회수별로 최신글을 뽑아낼수있는지 궁금합니다.
오류 주소 :
특정게시판의 글중에서 조회수별로 최신글을 뽑아낼수있는지 궁금합니다.
댓글 전체
lib/latest.lib.php 수정
$sql = " select * from $tmp_write_table where wr_is_comment = 0 order by wr_num limit 0, $rows ";
문을
$sql = " select * from $tmp_write_table where wr_is_comment = 0 order by wr_hit DESC limit 0, $rows ";
이렇게 하면 될것 같네요
$sql = " select * from $tmp_write_table where wr_is_comment = 0 order by wr_num limit 0, $rows ";
문을
$sql = " select * from $tmp_write_table where wr_is_comment = 0 order by wr_hit DESC limit 0, $rows ";
이렇게 하면 될것 같네요