댓글 목록에서 내 댓글과 댓글답변 글만 보이기
본문
view_comment.php 에서
전체 댓글 중에서
내가 쓴 댓글과 내 댓글에 달린 답변 글만 추출하려면 어떻게 하나요?
실력이 부족해서
아무리 해봐도 안되네요
답변 1
bbs/view_comment.php 20번행 쿼리문을 아래처럼 변경하세요
$row = sql_fetch("select wr_comment from $write_table where wr_parent = '$wr_id' and wr_is_comment = 1 and wr_comment_reply ='' and mb_id='{$member['mb_id']}' "); //추가한 행
$sql = " select * from $write_table where wr_parent = '$wr_id' and wr_comment = '{$row['wr_comment']}' order by wr_comment, wr_comment_reply "; //20번 행 수정
답변을 작성하시기 전에 로그인 해주세요.