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
|
<? session_start(); if (!isset($pcusid)) $pcusid = "";//20130910 ?> <? $today = date("Y-m-d"); //¿À´Ã³¯Â¥ ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="ko" xml:lang="ko"> <head> <title>õ³â¿µ¾÷</title> <link rel="shortcut icon" href="http://www.mijinsoft.co.kr/mijin2.ico" type="image/icon" /> <link rel="apple-touch-icon-precomposed" href="http://www.mijinsoft.co.kr/html/mobile/img/homeicon.png" /> <link href="http://www.mijinsoft.co.kr/html/mobile/css/common.css" rel="stylesheet" type="text/css" /> <!-- <script language='javascript' src='/js/prototype.js'></script> <script language='javascript' src='/js/default.js'></script> <script language='javascript' src='/js/miya_validator.js'></script> --> </head> <body bgcolor="#efefef"> <!-- <? if (isset ($cookie)) { while (list ($name, $value) = each ($cookie)) { echo $name."==".$value."<br>"; } } ?> --> <div id="wrap">
<? include("./topmenu.php"); ?> <!-- Sub menu --> <div class="tab_menu"> <ul class="tab_menu"> <li class="menu1 on"><a href="menu1.php">±âÃʰü¸®</a></li> <li class="menu2 on"><a href="menu2.php">µî·Ï°ü¸®</a></li> <li class="menu3 on"><a href="menu3.php">󸮳»¿ª</a></li> </ul> </div> <!-- contents start--> <div id="mainbt"> <table border="0" cellpadding="0" cellspacing="0" width="100%" height="240" align="center"> <? if ($pcusid != ""){ ?> <tr align="center" height="20"> <td colspan="3" valign="top" align="right"> <? echo $psname."(".$pcusname.") ´Ô ȯ¿µÇÕ´Ï´Ù."; ?><br> <? if($psa_demo == "demo"){ if($today > $psa_limitdemo){ echo "µ¥¸ð »ç¿ë±â°£ ¸¸·á<br> À̿빮ÀÇ(02-401-5121)"; } else { echo "µ¥¸ð¸¸·áÀÏÀÚ : ".$psa_limitdemo; } } ?> </td> </tr> <? } ?> <? if ($pcusid == ""){ ?> <tr align="center" height="20"> <td colspan="3" align="center"> <a href="logintest.php"><div class="testbutton" style="float:center;">¿µ¾÷°ü¸® Å×½ºÆ® Á¢¼Ó</div></a> </td> </tr> <? } ?> <tr align="center" height="100"> <td width="33%"> <a href="./menu1.php"><img src="./img/common/main_bt1.gif"></a> </td> <td width="33%"> <a href="./menu2.php"><img src="./img/common/main_bt2.gif"></a> </td> <td width="33%"> <a href="./menu3.php"><img src="./img/common/main_bt5.gif"></a> </td> </tr> <!-- <tr align="center" height="100"> <td width="33%"> <a href="./menu4.php"><img src="./img/common/main_bt3.gif"></a> </td> <td width="33%"> <a href="./menu5.php"><img src="./img/common/main_bt4.gif"></a> </td> <td width="33%"> <a href="./config.php"><img src="./img/common/main_bt6.gif"></a> </td> </tr> --> </table> </div> <div id="footer"> <li><a href="./config.php"><img src="./img/common/config_bt.gif" border="0"></li> <li><div class="corp">Copyright ¨Ï Mijinsoft Corp.</div></li> </div> </div>
</body> </html>
|