댓글 내용 반영하였습니다.
댓글 목록을 가져오는 html 파일 첫 부분에 DB에서 전체 댓글의 comment_srl을 regdate순으로 추출합니다. DB 프리픽스는 각자 상황에 맞게 변경해야 합니다.
{@ $oDB = &DB::getInstance(); $query = $oDB->_query('select comment_srl from xe_comments where document_srl = '.$document_srl.' order by regdate'); $result = $oDB->_fetch($query); $no = null; foreach($result as $k => $c): $no[] = $c->comment_srl; endforeach; array_flip($no); }
그리고 댓글을 출력하는 영역의 원하는 위치에 댓글의 comment_srl과 대응되는 번호를 출력합니다.
{$no[$comment->comment_srl]+1}
스타일을 주기 위해 클래스를 준다면 이런 식으로 하면 됩니다.
<span class="클래스명">{$no[$comment->comment_srl]+1}</span>
추가로 원하는 다양한 접미어를 붙여서 사용할 수도 있습니다.
<span class="클래스명">{$no[$comment->comment_srl]+1}번 댓글</span>