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
|
<? @session_start();?> <? if( $_SESSION[ADMINID] == ""){ ?> <script> location.href = "index.php"; </script> <? } if( eregi("upgradeBoard.php" , basename($_SERVER['PHP_SELF'] ) ) ) { $linkText1 = "<b>¾÷±×·¹À̵å</b>"; } else { $linkText1 = "¾÷±×·¹À̵å"; } if( eregi("asBoard.php" , basename($_SERVER['PHP_SELF']) ) ) { $linkText2 = "<b>A/S °ü¸®</b>"; } else { $linkText2 = "A/S °ü¸®"; } if( eregi("editBoard.php" , basename($_SERVER['PHP_SELF']) ) ) { $linkText3 = "<b>Á¦Ç°°³¼±»ó´ã</b>"; } else { $linkText3 = "Á¦Ç°°³¼±»ó´ã"; } if( eregi("buildBoard.php" , basename($_SERVER['PHP_SELF']) ) ) { $linkText4 = "<b>ÁÖ¹®°³¹ß»ó´ã</b>"; } else { $linkText4 = "ÁÖ¹®°³¹ß»ó´ã"; } if( eregi("rentService.php" , basename($_SERVER['PHP_SELF']) ) ) { $linkText5 = "<b>ÀÓ´ë/¼ºñ½º·á°ü¸®</b>"; } else { $linkText5 = "ÀÓ´ë/¼ºñ½º·á°ü¸®"; } if( eregi("jointBoard.php" , basename($_SERVER['PHP_SELF']) ) ) { $linkText6 = "<b>¾÷¹«Á¦ÈÞ/µô·¯°¡ÀÔ</b>"; } else { $linkText6 = "¾÷¹«Á¦ÈÞ/µô·¯°¡ÀÔ"; } ?> <title>¸®¼¿·¯ °ü¸®</title> <meta http-equiv="Content-Type" content="text/html; charset=euc-kr"> <link rel=stylesheet type=text/css href=style.css> <body bgcolor=white topmargin=0 leftmargin=0> <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=75 rowspan=4 width=130 height=85> <p><img src="/manage/logo01.gif"></p> </td> <td height=50> <table border=0 cellpadding=0 cellspacing=0> <tr> <td width=100 align=center> <a href='/manage/memberManage.php'>ȸ¿ø</a> </td> <td width=100 align=center> <a href='/manage/productManage.php'>»óǰ</a> </td> <td width=180> <a href='/manage/memberBoardManage.php'>ȸ¿ø¼ºñ½º °Ô½ÃÆÇ</a> </td> <td width=130 align=center> <a href='/manage/nomalBoardManage.php'>ÀÏ¹Ý °Ô½ÃÆÇ</a> </td> <td width=130 align=center> <a href='/manage/resellerManage.php'>¸®¼¿·¯</a> </td> <td width=100> <a href="/manage/orderList.php">°áÁ¦¸®½ºÆ®</a> </td> <td align=center width=100> </td> <td width=130> </td> </tr> </tr> </table> </td> </tr> <tr> <td bgcolor=#D8D8D8 height=1></td> </tr> <tr> <td bgcolor=#F1F0F0 height=4></td> </tr> <tr> <td height=30 bgcolor=#0072BC> <table> <tr> <td><a href='/manage/resellerList.php'><font color=ffffff>¸®¼¿·¯ ¸®½ºÆ®</font></a></td><td width=30> </td><td><a href='/manage/reseller_info.php'><font color=ffffff>¸®¼¿·¯ °èÁÂÁ¤º¸</font></a></td> </tr> </table> </td> </tr> </table> </td> </tr> <tr> <td height=5 bgcolor=#DFDFDF></td> </tr> </table>
|