Codeigniter

 

alert_helper.php

 

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
//메세지 출력 후 이동
function alert($msg='이동합니다', $url='') 
{
	echo "
		<script type='text/javascript'>
			alert('".$msg."');
			location.replace('".$url."');
		</script>
	";
	exit;
}

// 창닫기
function alert_close($msg) 
{
	$CI =& get_instance();
	echo "<meta http-equiv=\"content-type\" content=\"text/html; charset=".$CI->config->item('charset')."\">";
	echo "<script type='text/javascript'> alert('".$msg."'); window.close(); </script>";
	exit;
}

// 경고창 만
function alert_only($msg, $exit=TRUE) 
{
	echo "<meta http-equiv=\"content-type\" content=\"text/html; charset=".$CI->config->item('charset')."\">";
	echo "<script type='text/javascript'> alert('".$msg."'); </script>";
	if ($exit) exit;
}

function replace($url='/') {
	echo "<script type='text/javascript'>";
    if ($url)
        echo "window.location.replace('".$url."');";
	echo "</script>";
	exit;
}

/* End of file */

 

 

about author

PHRASE

Level 60  머나먼나라

소리 없는 벌레가 벽 뚫는다 , 말없는 사람이 실천력이 있다는 말.

댓글 ( 4)

댓글 남기기

작성

Codeigniter 목록    more