코멘트 쓸때,,,다른 테이블에 값저장 채택완료
스크랩할때 코멘트 쓰는 코드인데요,,
// 덧글이 넘어오고 코멘트를 쓸 권한이 있다면 if ($wr_content && ($member['mb_level'] >= $board['bo_comment_level'])) {
$mb_id = $member['mb_id']; $wr_name = addslashes(clean_xss_tags($board['bo_use_name'] ? $member['mb_name'] : $member['mb_nick'])); $wr_password = $member['mb_password']; $wr_email = addslashes($member['mb_email']); $wr_homepage = addslashes(clean_xss_tags($member['mb_homepage']));
$sql = " select max(wr_comment) as max_comment from $write_table where wr_parent = '$wr_id' and wr_is_comment = '1' "; $row = sql_fetch($sql); $row['max_comment'] += 1;
$sql = " insert into $write_table set ca_name = '{$write['ca_name']}', wr_option = '', wr_num = '{$write['wr_num']}', wr_reply = '', wr_parent = '$wr_id', wr_is_comment = '1', wr_comment = '{$row['max_comment']}', wr_content = '$wr_content', mb_id = '$mb_id', wr_password = '$wr_password', wr_name = '$wr_name', wr_email = '$wr_email', wr_homepage = '$wr_homepage', wr_datetime = '".G5_TIME_YMDHIS."', wr_ip = '{$_SERVER['REMOTE_ADDR']}', memo = '$memo' "; sql_query($sql);
$comment_id = sql_insert_id();
// 원글에 코멘트수 증가 sql_query(" update $write_table set wr_comment = wr_comment + 1 where wr_id = '$wr_id' ");
// 새글 INSERT // sql_query(" insert into {$g5['board_new_table']} ( bo_table, wr_id, wr_parent, bn_datetime, mb_id ) values ( '$bo_table', '$comment_id', '$wr_id', '".G5_TIME_YMDHIS."', '{$member['mb_id']}' ) ");
// 코멘트 1 증가 sql_query(" update {$g5['board_table']} set bo_count_comment = bo_count_comment + 1 where bo_table = '$bo_table' ");
// 포인트 부여 // insert_point($member['mb_id'], $board['bo_comment_point'], "{$board['bo_subject']} {$wr_id}-{$comment_id} 코멘트쓰기", $bo_table, $comment_id, '코멘트');
$comment_ok= true;; }
코멘트 저장하면서
g5_stock 테이블에
이 코멘트의 wr_id값과 number라는 별도의 필드값도 동시에 저장하려면 위의 코드를 어떻게 해주어야 할지요,,
답변 1개
답변을 작성하려면 로그인이 필요합니다.
로그인