답변 1개
채택된 답변
+20 포인트
2년 전
* /bbs/write_update.php
insert_point($member['mb_id'], $board['bo_write_point'], "{$board['bo_subject']} {$wr_id} 글쓰기", $bo_table, $wr_id, '쓰기');
→
if (mb_strlen($wr_content, 'utf-8') >= 1000)
$board['bo_write_point'] = '200';
insert_point($member['mb_id'], $board['bo_write_point'], "{$board['bo_subject']} {$wr_id} 글쓰기", $bo_table, $wr_id, '쓰기');
로그인 후 평가할 수 있습니다
답변에 대한 댓글 3개
�
2년 전
�
2년 전
if ($bo_table == 'free' && mb_strlen($wr_content, 'utf-8') >= 1000)
$board['bo_write_point'] = '200';
insert_point($member['mb_id'], $board['bo_write_point'], "{$board['bo_subject']} {$wr_id} 글쓰기", $bo_table, $wr_id, '쓰기');
$board['bo_write_point'] = '200';
insert_point($member['mb_id'], $board['bo_write_point'], "{$board['bo_subject']} {$wr_id} 글쓰기", $bo_table, $wr_id, '쓰기');
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인전체 질문 목록
채택
답변대기
채택
채택
채택
답변대기
답변대기
답변대기
채택
답변대기
답변대기
채택
채택
채택
답변대기
채택
채택
답변대기
if ($bo_table === 'free' && mb_strlen($wr_content, 'utf-8') >= 1000) {
$board['bo_write_point'] = '200';
insert_point($member['mb_id'], $board['bo_write_point'], "{$board['bo_subject']} {$wr_id} 글쓰기", $bo_table, $wr_id, '쓰기');
}