1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<? @session_start(); ?> <!DOCTYPE html>
<? if( !isset($_SESSION['ADMINID']) || $_SESSION['ADMINID'] == ""){ $uid = ""; ?> <script> location.href = "index.php"; </script> <? } ?>
<head> <meta http-equiv="Content-Type" content="text/html; charset=euc-kr"> <title>°ü¸®ÀÚ ÆäÀÌÁö</title> <link rel='stylesheet' type='text/css' href='./css/reset.css'> <link rel='stylesheet' type='text/css' href='./css/base.css'> </head>
<body> <div class="wrap"> <div class="header">
<? include("./include/gnb_menu.php"); ?>
</div><!-- //header -->
|