메인페이지 접속할때 쪽지 안내 창 있쟎아요.. > 그누4 질문답변

그누4 질문답변

그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기
기존 게시물은 열람만 가능합니다.

메인페이지 접속할때 쪽지 안내 창 있쟎아요.. 정보

메인페이지 접속할때 쪽지 안내 창 있쟎아요..

본문

메인페이지 접속하면 head.sub.php에서 쪽지 확인 하고 경고창 보여주쟎아요..

// 쪽지를 받았나?
if ($member['mb_memo_call']) {
    $mb = get_member($member[mb_memo_call], "mb_nick");
    sql_query(" update {$g4[member_table]} set mb_memo_call = '' where mb_id = '$member[mb_id]' ");

  alert("관리자로부터 쪽지가 전달되었습니다.", $_SERVER[REQUEST_URI]);
}


요기요... 이 소스를 confirm 확인창으로 하여 [확인]  [취소]로 경고창을 보여줘서 확인을 누르면 특정페이지로 갈 수 잇도록 하려면 어케해야하나요?

감사합니다.
  • 복사

댓글 전체


// 쪽지를 받았나?
if ($member['mb_memo_call']) {
    $mb = get_member($member[mb_memo_call], "mb_nick");
    sql_query(" update {$g4[member_table]} set mb_memo_call = '' where mb_id = '$member[mb_id]' ");
    echo "
    <script type='text/javascript'> 
    if (confirm('쪽지가 전달되었습니다. 확인하시겠습니까?'))
        document.location.href = '이동할 파일';
    else
        return;
    </script>";
}
감사합니다.

하지만
오류페이지가 뜨면서 함수 밖의 return문장이라고 그러네요.

오류메세지입니다.

Warning: Cannot modify header information - headers already sent by (output started at /home/hosting_users/wnkm1/www/head.sub.php:20) in /home/hosting_users/cxcx/www/head.sub.php on line 37

Warning: Cannot modify header information - headers already sent by (output started at /home/hosting_users/wnkm1/www/head.sub.php:20) in /home/hosting_users/cxcx/www/head.sub.php on line 39

Warning: Cannot modify header information - headers already sent by (output started at /home/hosting_users/wnkm1/www/head.sub.php:20) in /home/hosting_users/cxcx/www/head.sub.php on line 40

Warning: Cannot modify header information - headers already sent by (output started at /home/hosting_users/wnkm1/www/head.sub.php:20) in /home/hosting_users/cxcx/www/head.sub.php on line 41

Warning: Cannot modify header information - headers already sent by (output started at /home/hosting_users/wnkm1/www/head.sub.php:20) in /home/hosting_users/cxcx/www/head.sub.php on line 42

Warning: Cannot modify header information - headers already sent by (output started at /home/hosting_users/wnkm1/www/head.sub.php:20) in /home/hosting_users/cxcx/www/head.sub.php on line 43
© SIRSOFT
현재 페이지 제일 처음으로