26 lines
596 B
PHP
26 lines
596 B
PHP
<?
|
|
session_start();
|
|
include $_SERVER[DOCUMENT_ROOT] . "/common/lib/html.inc.php";
|
|
|
|
session_destroy();
|
|
|
|
//jsGo("/backoffice/index.php","top",iconv("EUC-KR","UTF-8","로그아웃 되었습니다."));
|
|
?>
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="Generator" content="EditPlus®">
|
|
<meta name="Author" content="">
|
|
<meta name="Keywords" content="">
|
|
<meta name="Description" content="">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
alert("로그아웃 되었습니다.");
|
|
document.location.href="/backoffice/index.php";
|
|
</script>
|
|
</body>
|
|
</html>
|