[제나플러스] 설정 포인트를 반환하고 레벨 상승하기
페이지 정보
본문
<?
$sub_menu = "200920";
include_once("./_common.php");
auth_check($auth[$sub_menu], "r");
$token = get_token();
if ($is_admin != "super")
alert("최고관리자만 접근 가능합니다.");
// 회원정보
$sql = " select * from $g4[member_table] where mb_point >= '200000' order by mb_id ";
$result = sql_query($sql);
include_once ("./admin.head.php");
?>
<table class="center_admtable" width="100%">
<tr>
<th>ID</th>
<th>이 름</th>
<th>닉네임</th>
<th>이메일</th>
<th>레벨</th>
<th>포인트</th>
</tr>
<?
for ($i=0; $row=sql_fetch_array($result); $i++) {
// 게시물 체크. 코멘트 및 원글 포함
$sql2 = " select count(*) as cnt from $g4[board_new_table] where mb_id = '$row[mb_id]' ";
$new = sql_fetch($sql2);
// 내역이 없다면 않았다면?
if (!$new['cnt']) {
// 일단 삭제할 아이디와 최종 로그인 출력
echo "<tr>";
echo "<td>{$row[mb_id]}</td>";
echo "<td>{$row[mb_name]}</td>";
echo "<td>{$row[mb_nick]}</td>";
echo "<td>{$row[mb_email]}</td>";
echo "<td>{$row['mb_level']}</td>";
echo "<td>". number_format($row['mb_point']) . "</td>";
echo "</tr>";
//포인트 반납
if ($row[mb_point] > "200000") {
$today_login_time = date("Y-m-d");
$minus_point = ($row[mb_point] * (-1));
insert_point($row[mb_id], $minus_point, "{$today_login_time}일 레벨승격 포인트반환", '@member', "$row[mb_id]", "$row[mb_id] 포인트반환");
// 회원랩업
$sql = " update $g4[member_table] set mb_level = '3' where mb_id = '$row[mb_id]'";
sql_query($sql);
}
} // end if
} // end for
?>
</table>
<?
include_once ("./admin.tail.php");
?>
$sub_menu = "200920";
include_once("./_common.php");
auth_check($auth[$sub_menu], "r");
$token = get_token();
if ($is_admin != "super")
alert("최고관리자만 접근 가능합니다.");
// 회원정보
$sql = " select * from $g4[member_table] where mb_point >= '200000' order by mb_id ";
$result = sql_query($sql);
include_once ("./admin.head.php");
?>
<table class="center_admtable" width="100%">
<tr>
<th>ID</th>
<th>이 름</th>
<th>닉네임</th>
<th>이메일</th>
<th>레벨</th>
<th>포인트</th>
</tr>
<?
for ($i=0; $row=sql_fetch_array($result); $i++) {
// 게시물 체크. 코멘트 및 원글 포함
$sql2 = " select count(*) as cnt from $g4[board_new_table] where mb_id = '$row[mb_id]' ";
$new = sql_fetch($sql2);
// 내역이 없다면 않았다면?
if (!$new['cnt']) {
// 일단 삭제할 아이디와 최종 로그인 출력
echo "<tr>";
echo "<td>{$row[mb_id]}</td>";
echo "<td>{$row[mb_name]}</td>";
echo "<td>{$row[mb_nick]}</td>";
echo "<td>{$row[mb_email]}</td>";
echo "<td>{$row['mb_level']}</td>";
echo "<td>". number_format($row['mb_point']) . "</td>";
echo "</tr>";
//포인트 반납
if ($row[mb_point] > "200000") {
$today_login_time = date("Y-m-d");
$minus_point = ($row[mb_point] * (-1));
insert_point($row[mb_id], $minus_point, "{$today_login_time}일 레벨승격 포인트반환", '@member', "$row[mb_id]", "$row[mb_id] 포인트반환");
// 회원랩업
$sql = " update $g4[member_table] set mb_level = '3' where mb_id = '$row[mb_id]'";
sql_query($sql);
}
} // end if
} // end for
?>
</table>
<?
include_once ("./admin.tail.php");
?>
추천0