포인트 제한에 관해 질문드립니다. 정보
포인트 제한에 관해 질문드립니다.본문
$freeboard라는 테이블이 있습니다. 그 게시판에 글을 작성할때는 하루에 한번만 포인트를 부여하고 싶습니다.(한 게시판에만 적용)
알려주시면 감사하겠습니다.
알려주시면 감사하겠습니다.
댓글 전체
bbs/write_update.php 내용 중
insert_point($member[mb_id], $board[bo_write_point], "$board[bo_subject] $wr_id 글쓰기", $bo_table, $wr_id, '쓰기');
이 부분을 (2군데 있습니다.)
$is_ok=true;
if ($bo_table=="원하는게시판명") {
$sql="select * from g4_point where instr(po_datetime,date_format(CURDATE(),'%Y-%m-%d')) and po_rel_table='원하는게시판명' and mb_id='$member[mb_id]'";
$one=sql_fetch($sql);
if ($one) $is_ok=false;
}
if ($is_ok) insert_point($member[mb_id], $board[bo_write_point], "$board[bo_subject] $wr_id 글쓰기", $bo_table, $wr_id, '쓰기');
이렇게 수정하면 될 것 같은데...
테스트해본 뒤 안되면 또 댓글 달아주세요...
insert_point($member[mb_id], $board[bo_write_point], "$board[bo_subject] $wr_id 글쓰기", $bo_table, $wr_id, '쓰기');
이 부분을 (2군데 있습니다.)
$is_ok=true;
if ($bo_table=="원하는게시판명") {
$sql="select * from g4_point where instr(po_datetime,date_format(CURDATE(),'%Y-%m-%d')) and po_rel_table='원하는게시판명' and mb_id='$member[mb_id]'";
$one=sql_fetch($sql);
if ($one) $is_ok=false;
}
if ($is_ok) insert_point($member[mb_id], $board[bo_write_point], "$board[bo_subject] $wr_id 글쓰기", $bo_table, $wr_id, '쓰기');
이렇게 수정하면 될 것 같은데...
테스트해본 뒤 안되면 또 댓글 달아주세요...
답변감사합니다.