Skip to content

일정 포인트 이상은 적립안되게 하기

Tip 조회 수 5072 추천 수 0 2013.03.15 05:35:56

사이트마다 적립되는 포인트의 최고치가 있을텐데요.


이럴때 만약 999.999.999 이라면 더이상 적립이 안되어야겠죠.


commom.lib.php 에서 아래와 같은 구문을 찾아보세요.


    // 회원아이디가 없다면 업데이트 할 필요 없음
    if ($mb_id == "") { return 0; }
    $mb = sql_fetch(" select mb_id from $g4[member_table] where mb_id = '$mb_id' ");
    if (!$mb[mb_id]) { return 0; } 



아래와 같이 추가를 해줍니다.


    // 회원아이디가 없다면 업데이트 할 필요 없음
    if ($mb_id == "") { return 0; }
    $mb = sql_fetch(" select mb_id, mb_point from $g4[member_table] where mb_id = '$mb_id' ");
    if (!$mb[mb_id]) { return 0; }
    if ($mb[mb_point] >= "999999999") { return 0; }

profile

I see no changes, wake up in the morning and I ask myself

Is life worth living should I blast myself

Things would never be the same.

엮인글 :
http://adminplay.com/184203/c6a/trackback
List of Articles
번호 제목 글쓴이 날짜 조회 수

Copyright ADMINPLAY corp. All rights reserved.

abcXYZ, 세종대왕,1234

abcXYZ, 세종대왕,1234