<input type="hidden" name="pointMore" value="100" />
<button type="submit">Point+100</button>
</form>
<form method="post" action="/">
<input type="hidden" name="pointMore" value="-100" />
<button type="submit">Point-100</button>
</form>
<block cond="$pointMore">
{@
$oPointController = &getController('point');
$oPointController->setPoint($logged_info->member_srl,$pointMore, 'add');
}
</block>
그대로 카피해서
테스트 페이지에 붙여넣고
웹에서 테스트 해 보세요
참고
$oPointController = &getController('point');
$oPointController->setPoint(회원번호, 포인트, 포인트 설정 타입');
이것이 포인트 설정하는 겁니다.
포인트 설정타입은 add, minus, update 사용하시면 됩니다.