현재창 놔두고 새창띄우기 질문 드립니다 정보
현재창 놔두고 새창띄우기 질문 드립니다본문
본문if ($member[mb_level] < $board[bo_download_level]) {
$alert_msg = "다운로드 권한이 없습니다.";
if ($member[mb_id])
alert($alert_msg);
else
alert($alert_msg . "\\n\\n회원이시라면 로그인 후 이용해 보십시오.", "./login.php?wr_id=$wr_id&$qstr&url=".urlencode("$g4[bbs_path]/board.php?bo_table=$bo_table&wr_id=$wr_id"));
}
./login.php?wr_id=$wr_id&$qstr&url=".urlencode("$g4[bbs_path]/board.php?bo_table=$bo_table&wr_id=$wr_id
로그인주소 인데요 이 로그인주소로가는것을
현재창은 놔두고 위주소만 새창으로 뛰우게 하려면 어떻게 하나요??
아시는분 답변부탁드립니다
$alert_msg = "다운로드 권한이 없습니다.";
if ($member[mb_id])
alert($alert_msg);
else
alert($alert_msg . "\\n\\n회원이시라면 로그인 후 이용해 보십시오.", "./login.php?wr_id=$wr_id&$qstr&url=".urlencode("$g4[bbs_path]/board.php?bo_table=$bo_table&wr_id=$wr_id"));
}
./login.php?wr_id=$wr_id&$qstr&url=".urlencode("$g4[bbs_path]/board.php?bo_table=$bo_table&wr_id=$wr_id
로그인주소 인데요 이 로그인주소로가는것을
현재창은 놔두고 위주소만 새창으로 뛰우게 하려면 어떻게 하나요??
아시는분 답변부탁드립니다
댓글 전체
아래와 같이 함수를 하나 만드시면 되시지 않을까요
function alert_pop($msg='', $url='')
{
global $g4;
if (!$msg) $msg = '올바른 방법으로 이용해 주십시오.';
//header("Content-Type: text/html; charset=$g4[charset]");
echo "<meta http-equiv=\"content-type\" content=\"text/html; charset=$g4[charset]\">";
echo "<script type='text/javascript'>alert('$msg');";
if ($url){
echo "var popup = window.open(\"$url\", \"winlogin\", \"left=50,top=50,width=616,height=460,scrollbars=1\");popup.focus();";
}
// echo "history.go(-1);";
echo "</script>";
exit;
}
창크기가 필요없으시면 뒤쪽 \"left=50,top=50,width=616,height=460,scrollbars=1\" 을 없애 주시면 됩니다
function alert_pop($msg='', $url='')
{
global $g4;
if (!$msg) $msg = '올바른 방법으로 이용해 주십시오.';
//header("Content-Type: text/html; charset=$g4[charset]");
echo "<meta http-equiv=\"content-type\" content=\"text/html; charset=$g4[charset]\">";
echo "<script type='text/javascript'>alert('$msg');";
if ($url){
echo "var popup = window.open(\"$url\", \"winlogin\", \"left=50,top=50,width=616,height=460,scrollbars=1\");popup.focus();";
}
// echo "history.go(-1);";
echo "</script>";
exit;
}
창크기가 필요없으시면 뒤쪽 \"left=50,top=50,width=616,height=460,scrollbars=1\" 을 없애 주시면 됩니다