- <?php
- if($_SESSION[admin_cd_user]==""||$_SESSION[admin_cd_user]==null){
- ?>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- </head>
- <script>
- alert("본페이지는 관리자만 접근 가능합니다.");
- location.replace("<?=ADMIN_PATH?>index.php");
- </script>
- </head>
- </html>
- <?
- }
- ?>
|