[제나플러스] 글쓰기 제한
본문
bbs/write_update.php
관리자가 아닐 경우 하루 글쓰기를 제한합니다.
if(!$is_admin) {
$sql = " select count(*) as cnt from $g4[board_new_table] where mb_id = '$member[mb_id]' and wr_is_comment ='0' and bn_datetime like '$g4[time_ymd]%' ";
$row = sql_fetch($sql);
if ($row[cnt] >= 3) {
alert("글쓰기 제한에 걸려 더 이상 글쓰기 할 수 없습니다.");
}
}
관리자가 아닐 경우 하루 글쓰기를 제한합니다.
if(!$is_admin) {
$sql = " select count(*) as cnt from $g4[board_new_table] where mb_id = '$member[mb_id]' and wr_is_comment ='0' and bn_datetime like '$g4[time_ymd]%' ";
$row = sql_fetch($sql);
if ($row[cnt] >= 3) {
alert("글쓰기 제한에 걸려 더 이상 글쓰기 할 수 없습니다.");
}
}
추천0
댓글목록 0
등록된 댓글이 없습니다.