[기타] 출석부 보너스 포인트 게시판 > 스킨

본문 바로가기
사이트 내 전체검색

스킨

기타 [기타] 출석부 보너스 포인트 게시판

페이지 정보

본문

제목이 이상하네요.
출석체크를 하면 해당 출석일만큼 보너스 포인트를 주는 게시판형 스킨입니다.

사용법

압축푸신 파일중

attendancebook 는 skin/board 폴더에
calender 는 bbs폴더에 넣어주시면됩니다.

보조필드 1~3을 사용하며
1번은 달력에 행사일(음력) 등을 불러오는 설정이며
2번은 출석일에 해당하는 보너스 포인트 설정이며
3번은 보너스 포인트 지급일 설정입니다.

설정 참고는 스크린샷을 참고하시고
똑같이 하시면됩니다.

이 스킨 이용하실때 게시판관리에서 검색사용 안함으로 해주세요.
그래야 최신글에 안나와서 깨끗합니다.

추천0

첨부파일

댓글목록

profile_image

곰순이푸님의 댓글

곰순이푸쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 작성일

본스킨은 제로나라 홈페이지에 1차 배포한 스킨입니다.
SIR 사이트는 제가 몇일 후 배포할 예정이니 불펌을 금합니다.

profile_image

포인트님의 댓글

포인트쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 작성일

수고하셨습니다.. 역시 곰순이푸님이십니다 ^^

profile_image

하얀별님의 댓글

하얀별쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 작성일

아이디어 최곱니다....수고하셨습니다....

profile_image
profile_image

월드컵님의 댓글

월드컵쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 작성일

수고 많으셨고 멋지네요.
공개해주셔서 고맙습니다. ^^

profile_image

곰순이푸님의 댓글

곰순이푸쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 작성일

이 스킨 이용하실때 게시판관리에서 검색사용 안함으로 해주세요.
그래야 최신글에 안나와서 깨끗합니다.

profile_image

곰순이푸님의 댓글

곰순이푸쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 작성일

에러 나시는거 죄송합니다.
저는 새로운글 저장되는 테이블을 편의상 수정해서 사용한상태여서
그에맞게 제작된상태로 배포하게 되서 생긴 문제이네요

write_attendancebook.php 파일 열어보시면

sql_query(" insert into $g4[board_new_table] ( bo_table, wr_id, wr_parent, bn_datetime, mb_id, wr_is_comment, gr_id ) values ( '$bo_table', '$row2[wr_id]', '$row2[wr_id]', '$g4[time_ymdhis]', '$member[mb_id]', '0', '$gr_id' ) ");

이부분을

sql_query(" insert into $g4[board_new_table] ( bo_table, wr_id, wr_parent, bn_datetime, mb_id ) values ( '$bo_table', '$row2[wr_id]', '$row2[wr_id]', '$g4[time_ymdhis]', '$member[mb_id]' ) ");

이렇게 수정해주시면 에러 메세지가 안뜰겁니다.

profile_image

곰순이푸님의 댓글

곰순이푸쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 작성일

코멘트가 많이 달려서 원본 수정이 안되고 있습니다.

직접 수정해주셔야 할거 같습니다.

profile_image

곰순이푸님의 댓글

곰순이푸쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 작성일

영혼의 빛/ 아니요 한달간 출석한 횟수에 맞는 포인트가 지급되는겁니다.
3회 출석했으면 1~4 안에 속하므로 그 해당 포인트 지급이구요
12회 면 10~14 안에 해당하는 포인트를 지급하는겁니다.

profile_image

곰순이푸님의 댓글

곰순이푸쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 작성일

테스트는 안해봣습니다.

write_attendancebook.php
를 아래와 같이 수정하세요.

<?
include_once("./_common.php");

$d2 = md5(number_format(substr($g4[time_ymd],8,2)));

$row4 = sql_fetch(" select count(*) as cnt  from $write_table where mb_id = '$member[mb_id]' and wr_datetime like '%$g4[time_ymd]%' order by cnt desc ");

if ($member[mb_id] && $d == $d2 && !$row4[cnt]) {

$time_ymd = preg_replace("/-/", "", $g4[time_ymd]);

// 자동 글 생성
$write_table = $g4['write_prefix']."".$bo_table;

$row = sql_fetch(" select * from $write_table order by wr_num asc limit 1");
$rowcnt = $row[wr_num]-1;

sql_query(" insert into $write_table set wr_num = '$rowcnt', wr_comment = 0, wr_subject = 'attendancebook', wr_link1 = '$time_ymd', wr_link2 = '$time_ymd', wr_link1_hit = 0, wr_link2_hit = 0, wr_hit = 0, wr_good = 0, wr_nogood = 0, mb_id = '$member[mb_id]', wr_password = '$member[mb_password]', wr_datetime = '$g4[time_ymdhis]', wr_last = '$g4[time_ymdhis]', wr_ip = '$_SERVER[REMOTE_ADDR]' ");

$row2 = sql_fetch(" select * from $write_table order by wr_id desc limit 1");
$row3 = sql_fetch(" select * from $g4[board_table] where bo_table = '$bo_table' order by bo_table desc limit 1");
$bo_count_write = $row3[bo_count_write]+1;

sql_query(" insert into $g4[board_new_table] ( bo_table, wr_id, wr_parent, bn_datetime, mb_id ) values ( '$bo_table', '$row2[wr_id]', '$row2[wr_id]', '$g4[time_ymdhis]', '$member[mb_id]' ) ");
sql_query(" update $write_table set wr_parent = '$row2[wr_id]' where wr_num = '$rowcnt' and wr_1 = '$w_data[2]' ");
sql_query(" update $g4[board_table] set bo_count_write = '$bo_count_write' where bo_table = '$bo_table' ");

if ($g4[https_url])
    $https_url = "$g4[url]/$g4[bbs]";
else
    $https_url = "../../../bbs";

    goto_url("{$https_url}/board.php?bo_table=$bo_table" . $qstr);

} else {

if ($g4[https_url])
    $https_url = "$g4[url]/$g4[bbs]";
else
    $https_url = "../../../bbs";

    goto_url("{$https_url}/board.php?bo_table=$bo_table" . $qstr);
}
?>

profile_image

계절을안고서님의 댓글

계절을안고서쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 작성일

간단한 이벤트할때 좋겠네요 감사합니다.

Total 396건 7 페이지
  • RSS

검색

회원로그인

회원가입

사이트 정보

株式会社YHPLUS / 대표 : ZERO
〒140-0011 東京都品川区東大井2-5-9-203
050-5539-7787
오픈카카오톡 (YHPLUS) :
https://open.kakao.com/o/slfDj15d

접속자집계

오늘
3,616
어제
4,901
최대
7,259
전체
1,234,546
Copyright (c) 株式会社YHPLUS. All rights reserved.