[제나플러스] 답변시 쪽지 보내기
페이지 정보
본문
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
if ($write[wr_2] != "1" && $is_admin=='super'){
mysql_query(" update $write_table set wr_2 = '1' where wr_id = '$wr_id' ");$an="[답변글]";}
else if ($write[wr_2] == "1" && $is_admin=='super'){mysql_query(" update $write_table set wr_2 = '1' where wr_id = '$wr_id' ");$an="[답변수정]";}
if ($is_admin=='super') {
$recv_id = "$wr[mb_id]"; // 받는 사람 아이디
$send_id = "$member[mb_id]"; // 보내는 사람
// 받는 분 쪽지 발송
$tmp_row = sql_fetch(" select max(me_id) as max_me_id from $g4[memo_table] ");
$me_id = $tmp_row[max_me_id] + 1;
// 쪽지 INSERT
$sql = " insert into $g4[memo_table]
( me_id, me_recv_mb_id, me_send_mb_id, me_send_datetime, me_memo )
values ( '$me_id', '$recv_id', '$send_id', '$g4[time_ymdhis]', '{$an} {$wr[wr_name]}님께서 올리신 $board[bo_subject]게시판 - $wr_id 번 게시물에 대한 관리자님의 답변이 올라왔습니다.
$g4[url]/$g4[bbs]/board.php?bo_table=$bo_table' ) ";
sql_query($sql);
// 실시간 쪽지 알림 기능
$sql = " update $g4[member_table]
set mb_memo_call = '$send_id'
where mb_id = '$recv_id' ";
sql_query($sql);
} else {
$recv_id = "$config[cf_admin]"; // 받는 사람 아이디
$send_id = "$member[mb_id]"; // 보내는 사람
// 받는 분 쪽지 발송
$tmp_row = sql_fetch(" select max(me_id) as max_me_id from $g4[memo_table] ");
$me_id = $tmp_row[max_me_id] + 1;
// 쪽지 INSERT
$sql = " insert into $g4[memo_table]
( me_id, me_recv_mb_id, me_send_mb_id, me_send_datetime, me_memo )
values ( '$me_id', '$recv_id', '$send_id', '$g4[time_ymdhis]', '{$member[mb_id]}님이 $board[bo_subject]게시판 - $wr_id 번 게시물에 질문사항을 올렸습니다.
$g4[url]/$g4[bbs]/board.php?bo_table=$bo_table&wr_id=$wr_id' ) ";
sql_query($sql);
// 실시간 쪽지 알림 기능
$sql = " update $g4[member_table]
set mb_memo_call = '$send_id'
where mb_id = '$recv_id' ";
sql_query($sql);
}
?>
<script>
location.href="./board.php?bo_table=<?=$bo_table?>";
</script>
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
if ($write[wr_2] != "1" && $is_admin=='super'){
mysql_query(" update $write_table set wr_2 = '1' where wr_id = '$wr_id' ");$an="[답변글]";}
else if ($write[wr_2] == "1" && $is_admin=='super'){mysql_query(" update $write_table set wr_2 = '1' where wr_id = '$wr_id' ");$an="[답변수정]";}
if ($is_admin=='super') {
$recv_id = "$wr[mb_id]"; // 받는 사람 아이디
$send_id = "$member[mb_id]"; // 보내는 사람
// 받는 분 쪽지 발송
$tmp_row = sql_fetch(" select max(me_id) as max_me_id from $g4[memo_table] ");
$me_id = $tmp_row[max_me_id] + 1;
// 쪽지 INSERT
$sql = " insert into $g4[memo_table]
( me_id, me_recv_mb_id, me_send_mb_id, me_send_datetime, me_memo )
values ( '$me_id', '$recv_id', '$send_id', '$g4[time_ymdhis]', '{$an} {$wr[wr_name]}님께서 올리신 $board[bo_subject]게시판 - $wr_id 번 게시물에 대한 관리자님의 답변이 올라왔습니다.
$g4[url]/$g4[bbs]/board.php?bo_table=$bo_table' ) ";
sql_query($sql);
// 실시간 쪽지 알림 기능
$sql = " update $g4[member_table]
set mb_memo_call = '$send_id'
where mb_id = '$recv_id' ";
sql_query($sql);
} else {
$recv_id = "$config[cf_admin]"; // 받는 사람 아이디
$send_id = "$member[mb_id]"; // 보내는 사람
// 받는 분 쪽지 발송
$tmp_row = sql_fetch(" select max(me_id) as max_me_id from $g4[memo_table] ");
$me_id = $tmp_row[max_me_id] + 1;
// 쪽지 INSERT
$sql = " insert into $g4[memo_table]
( me_id, me_recv_mb_id, me_send_mb_id, me_send_datetime, me_memo )
values ( '$me_id', '$recv_id', '$send_id', '$g4[time_ymdhis]', '{$member[mb_id]}님이 $board[bo_subject]게시판 - $wr_id 번 게시물에 질문사항을 올렸습니다.
$g4[url]/$g4[bbs]/board.php?bo_table=$bo_table&wr_id=$wr_id' ) ";
sql_query($sql);
// 실시간 쪽지 알림 기능
$sql = " update $g4[member_table]
set mb_memo_call = '$send_id'
where mb_id = '$recv_id' ";
sql_query($sql);
}
?>
<script>
location.href="./board.php?bo_table=<?=$bo_table?>";
</script>
추천0
댓글목록
등록된 댓글이 없습니다.