//메시지 띄우기
function basic_caution($msg){
	$str = "<script>";
	$str .= "alert('{$msg}');"; 
	$str .= "</script>"; 
	echo("$str"); 
	exit; 
} 

//메시지 띄우고 이전 페이지로 이동 
function back_caution($msg){ 
	$str = "<script>"; 
	$str .= "alert('{$msg}');"; 
	$str .= "history.back();";
	$str .= "</script>";
	echo("$str"); 
	exit; 
} 

// 메시지 띄우고 URL 이동 
function goto_caution($msg, $url){ 
	$str = "<script>"; 
	$str .= "alert('{$msg}');"; 
	$str .= "location.href = '{$url}';"; 
	$str .= "</script>"; 
	echo("$str"); 
	exit; 
} 

// 메시지 띄우고 창 종료
function close_caution($msg){
	$str = "<script>"; 
	$str .= "alert('{$msg}');";
	$str .= "window.close();";
	$str .= "</script>";
	echo("$str");
	exit;
} 

// URL로 이동 
function just_go($url){ 
	$str = "<script>"; 
	$str .= "location.href = '{$url}';"; 
	$str .= "</script>"; 
	echo("$str"); 
	exit; 
} 
Posted by 파이군
,