댓글 wr_1 여분필드 사용 질문 드립니다
본문
현재
sql_query("update $write_table set wr_1 = '$wr_id' where wr_id = '$wr_id' ");
해당 구문으로 게시판여분필드 wr_1의 값을 wr_id 값으로 받아오고 있습니다.
댓글 wr_1값을 받아오고 받아오고 싶은데 어떻게 수정해야 할까요 ?
답변 2
sql_query("update $write_table set wr_1 = '$wr_id' where wr_parent = '$wr_parent' and wr_id = '$wr_id' and wr_is_comment = '1'");
~~ 특정 게시글의 댓글을 상대로 wr_1
을 업글 함 ~~
상위 글(부모 글)을 구분 하지 않는다면,
sql_query("update $write_table set wr_1 = '$wr_id' where wr_id = '$wr_id' and wr_is_comment = '1'");
※ 댓글 등록 로직수정 ; /bbs/write_comment_update.php 수정
> https://policy.glitter.kr/qa_php/dn/g5/write_comment_update.php.txt
- 수정한 전체파일 - 브라우저에서 한글 깨짐은 무시하3.
- 내용 전체를 복사 하거나 부분 수정
※ 번호 할당 변수
$num를
고정시키; /bbs/list.php (or , write_update.php) 수정
if (!isset($num)) {
$num = str_pad($i + 1, 3, '0', STR_PAD_LEFT);
}
답변을 작성하시기 전에 로그인 해주세요.