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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
<? @error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING ); header("Content-type:text/html;charset=euc-kr"); @session_start(); @extract($_REQUEST); @extract($_SESSION); Header("P3P: CP='NOI DSP COR IVAa OUR BUS IND UNI COM NAV INT'"); include("./_common.php"); if(trim($_SESSION['ADMINID'])==''){ echo "<script> alert('·Î±×ÀÎ ÇÏ¼Å¾ß À̿밡´ÉÇÕ´Ï´Ù.'); document.location.href='index.php'; </script>"; exit; } ?> <!DOCTYPE html>
<? if( !isset($_SESSION['ADMINID']) || $_SESSION['ADMINID'] == ""){ $uid = ""; if (!isset($sub)) $sub = ""; if (!isset($menu)) $menu = ""; if (!isset($new)) $new = ""; ?> <script> history.back(-1); </script> <? } ?>
<? include("./category/mscommon.php"); ?>
<? $userid = $_SESSION['ADMINID'];
$nameQry = " SELECT admin_name From admin WHERE admin_id = '$userid' "; $nameResult = MYSQL_QUERY($nameQry);
$nameRow = MYSQL_FETCH_ARRAY($nameResult);
$adminName = $nameRow['admin_name']; ?>
<head> <meta http-equiv="content-type" content="application/xhtml+xml;" /> <meta 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'>
<!--<script language='javascript' src="./js/jquery-1.8.3.min.js"></script>--> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script src='/js/jqueryui/jquery-ui.js'></script> <link href="/js/jqueryui/jquery-ui.css" rel="stylesheet" type="text/css">
<script language="JavaScript"> function menugo(n) {
document.getElementById('submenu0').style.display = "none"; for(var i = 1; i < 8; i++) { obj = document.getElementById('submenu'+i); img = document.getElementById('menu'+i); if ( n == i ) { obj.style.display = "block"; //img.height = 80; img.src = "./images/common/menu"+i+"on.gif"; } else { obj.style.display = "none"; //img.height = 80; img.src = "./images/common/menu"+i+".gif"; } } } </script> </head>
<body onLoad="document.SearchFrm.keyword.focus();"> <div class="wrap"> <div class="header">
<? include("./include/gnb_menu.php"); ?>
</div><!-- //header -->
|