2007. 6. 29. 15:26

페이지 이동 함수 v1.0


<?php
// 경고창 후 백이동
function alertPage($msg,$step='-1'){
 exit('<script language="javascript" type="text/javascript">alert("'.$msg.'");'.($step != null ? 'history.go('.$step.');':'').'</script>');
}

// 경고창 후 창닫기
function closePopUp($msg=null) {
 exit('<script language="javascript" type="text/javascript">'.($msg != null ? 'alert("'.$msg.'");' : '').'top.close();</script>');
}

// 경고창 후 페이지 이동
function movePage($url,$msg=null){
 exit('<script language="javascript" type="text/javascript">'.($msg != null ? 'alert("'.$msg.'");' : '').'self.location.replace("'.$url.'");</script>');
}

//경고창 후 페이지 Replace(history 않남게)
function replacePage($url,$msg=null) {
 exit('<script language="javascript" type="text/javascript">'.($msg != null ? 'alert("'.$msg.'");' : '').'self.location.replace("'.$url.'");</script>');
}
?>