mb_1 에 포인트처럼 댓글을 달면 무조건 1점씩 올라가도록 할수 없을까요? 정보
mb_1 에 포인트처럼 댓글을 달면 무조건 1점씩 올라가도록 할수 없을까요?본문
안녕하세요
댓글을 쓰면 mb_1에 무조건 +1씩 하려고합니다.
영 ㅜ.ㅡ 잘안되서요!! 혹시 이렇게 할수 있는 방법이 있나해서요!!
댓글을 쓰면 mb_1에 무조건 +1씩 하려고합니다.
영 ㅜ.ㅡ 잘안되서요!! 혹시 이렇게 할수 있는 방법이 있나해서요!!
댓글 전체
write_comment_update.tail.skin.php
delete.tail.skin.php
안되면 패스요 ;;
<?
if ($w == "c") // 코멘트 입력
{
// 코멘트 달면 증가
sql_query(" update $g4[member_table] set mb_1= mb_1 + 1 where mb_id = '$member[mb_id]' ");
}
?>
delete.tail.skin.php
$sql = " select wr_id, mb_id, wr_is_comment from $write_table where wr_parent = '$write[wr_id]' order by wr_id ";
$result = sql_query($sql);
while ($row = sql_fetch_array($result))
{
if($member[mb_1] > 0 ){
if ($row[wr_is_comment])
{
sql_query(" update $g4[member_table] set mb_1= mb_1 - 1 where mb_id = '$member[mb_id]' ");
}
}
}
안되면 패스요 ;;