한회원이 한개 게시판에서 댓글수 제한을 한개게시글에서 댓글수를 제한 하고 싶습니다
본문
아래 소스에서는 한개 게시판으로 하엿는데 이거를 하개 게시글로 하고싶습니다.
<?php
if ($member['mb_level'] < 5) {
if ($w != 'u') {
$sql = " select count(*) as cnt from $write_table where wr_ip = '$_SERVER[REMOTE_ADDR]' and datediff(LEFT(wr_datetime, 10) , CURDATE()) = 0 AND wr_is_comment ='1' GROUP BY wr_ip having count(*) >= $board[bo_8] ";
$row = sql_fetch($sql);
if ($row[cnt] ) {
$is_comment_write =0;
echo "<center><font color=red>이 게시판은 하루에 $board[bo_8]개의 댓글만 달 수 있습니다.</font></center><br>";
}
}
}
if ($is_comment_write) {
if($w == '')
$w = 'c';
?>
답변을 작성하시기 전에 로그인 해주세요.