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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
<? @session_start();?> <? Header("P3P: CP='NOI DSP COR IVAa OUR BUS IND UNI COM NAV INT'"); //if( !isset($_SESSION[ADMINID]) || $_SESSION[ADMINID] == ""){ if($_SESSION[ADMINID] !== "csh" && $_SESSION[ADMINID] !== "kjunggu"){
?> <script> location.href = "index.php"; </script> <? } ?>
<? include("../manage/category/common.php"); ?>
<?
$userid = $_SESSION[ADMINID];
$nameQry = " SELECT * From m3_info"; $nameResult = MYSQL_QUERY($nameQry);
$nameRow = MYSQL_FETCH_ARRAY($nameResult);
?>
<link href="../css/style.css" rel="stylesheet" type="text/css"> <SCRIPT LANGUAGE="JavaScript"> function m3submit() { if(confirm("ÀúÀåÇϽðڽÀ´Ï±î?")){ m3form.submit(); } } </SCRIPT> <title>°ü¸®ÀÚ ÆäÀÌÁö</title> <meta http-equiv="Content-Type" content="text/html; charset=euc-kr"> <link rel=stylesheet type=text/css href=style.css> <script type="text/javascript" src="./alditor/alditor.js"></script> <script language='javascript' src='../js/left_menu.js'></script> <script language='javascript' src='../js/img.js'></script> <body bgcolor=white topmargin=0 leftmargin=0> <iframe name="ifrm" width="0" height="0" style="border:0px;"></iframe> <table border=0 cellpadding=0 cellspacing=0 width=100% height=90> <tr> <td height=85> <table border=0 cellpadding=0 cellspacing=0 width=100% height=85> <tr> <td width=185 rowspan=4 width=185 height=85> <p><A HREF="../manage/admin_include.php"><img src="../manage/logo01.gif" border=0></A></p> </td> <td height=50> <? include("topmenu.php"); ?> </td> </tr> </table> </td> </tr> </table> <form name="m3form" method="post" target="ifrm" action="m3updateProcess.php"> <table border=0 cellpadding=0 cellspacing=0 width="1000" > <tr> <td width="200" height="172" rowspan="3" valign="top"> <? include("left_menu_admin.php"); ?> </td> <td width="700" height="150" rowspan="2" style="line-height:150%;padding-top:20px;padding-left:30px;padding-bottom:50px;font-size:16px;" valign="top"> <div> <div style="text-align:center;"> õ³â°æ¿µ3 BETA VERSION: <input type="text" name="m3ver" value="<?=$nameRow[m3ver]?>"> </div> <div style="text-align:center;margin-top:15px"> <a href="../download/jego3_setup.exe"><img src="./img/download_bt.gif" border="0"></a> </div> <div style="text-align:center;"> <textarea name="m3info" style="width:744px;height:400px;"><?=stripslashes($nameRow[m3info])?></textarea> </div> <div style="text-align:center;margin-top:20px;"> <img src="./img/newsave.gif" border="0" style="cursor:pointer;" onclick="m3submit();"> </div> </div> </td> </tr> </table> </form>
<table> <tr> <td width="950" height="4" colspan="4" bgcolor="#E4E4E4" > </td> </tr> <tr> <td width="193" > <p align="center"><img src="../manage/img/mjlogo.GIF" border="0"></p> </td> <td width="734" colspan="2" >
<!-- ¸µÅ© µ¥ÄÚ·¹ÀÌ¼Ç ½ÃÀÛ --> <!-- ÅØ½ºÆ® ¸µÅ©¿¡ ¸¶¿ì½º¸¦ °¡Á®°¡¸é ¹ØÁÙ ±ß°í »ö±ò º¯°æ µî-->
<style> a:link {color:#404040; text-decoration:none} a:visited {color:#404040; text-decoration:none} a:active {color:#404040; text-decoration:none} a:hover {color:#FF6600; text-decoration:underline} .BoldFont {font-weight:bold;text-decoration:underline;} .GeneFont {font-weight:normal; text-decoration:none;} </style> <!-- ¸µÅ© µ¥ÄÚ·¹ÀÌ¼Ç ³¡ -->
<? include("admin_foot.php"); ?>
</td> <td width="19" > <p> </p> </td> </tr> </table>
|