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
|
<? if( $_COOKIE[USERID] == "") { ?> <table width="315" border="0" cellspacing="0" cellpadding="0" bgcolor="#EFF3F7"> <tr> <td colspan="3" width=192> <img src="../img/login/index_box_top.gif" width="192" height="7"> </td> <td width="123" height="72" rowspan="3" align="right" bgcolor="EDEDED"> <table width="90%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="7"></td> </tr> <tr> <td height="17" class="txt03"> <img src="../img/common/box_orange.gif" width="3" height="3" hspace="5" align="absmiddle"> <a href="../html/join.php"><FONT COLOR="#000000">ȸ¿ø°¡ÀÔ</FONT></a> </td> </tr> <tr> <td height="17" class="txt03"> <img src="../img/common/box_orange.gif" width="3" height="3" hspace="5" align="absmiddle"><A style="CURSOR: hand" onclick="{window.external.AddFavorite('http://www.mijinsoft.co.kr/', '::::: ¹ÌÁø¼ÒÇÁÆ® :::::')}"> <FONT COLOR="#6C6C6C">Áñ°Üã±âÃß°¡</FONT></a> </td> </tr> <tr> <td height="17" class="txt03"><img src="../img/common/box_orange.gif" width="3" height="3" hspace="5" align="absmiddle"><a href="javascript:goFindIdPw()"> ID/ºñ¹øÃ£±â</a></td> </tr> </table> </td> </tr> <tr> <td width="14"><img src="../img/login/index_box_left.gif" width="14" height="47"></td> <td width="170" background="../img/login/index_box_bg.gif" bgcolor="#FFFF99"> <table width="170" border="0" cellspacing="0" cellpadding="0" class="txt03"> <tr> <td valign="top">I D <input type="text" name="id" style="width:78px;height:20px;" class="log" tabindex="1"></td> <td width="63" rowspan="2"><input type=image src="../img/login/btn_01.gif" width="63" height="47"></td> </tr> <tr> <td valign="bottom">PW <input type="password" name="passwd" style="width:78px;height:20px;" class="log" tabindex="2"></td> </tr> </table> </td> <td width="6"><img src="../img/login/index_box_right.gif" width="6" height="47"></td> </tr> <tr> <td colspan="3"><img src="../img/login/index_box_bot.gif" width="192" height="6"></td> </tr> </table> <? } else {
$memberQry = " select b.category_name from member a, cate3 b WHERE a.Mid = '$_COOKIE[USERID]' and a.Msw1 = b.category_code "; $memberResult = mysql_query($memberQry); $memberRow = mysql_fetch_array($memberResult); $programName = explode("->", $memberRow[0]); ?> <table width="315" height="72" border="0" cellpadding="5" cellspacing="4" bgcolor="f0f0f0"> <tr> <td width="315" height="72" bgcolor="EFF3F7"> <table width="100%" border="0" cellspacing="0" cellpadding="2"> <tr> <td class="txt03"><strong><?=$_COOKIE[USERID];?></strong> ´Ô ·Î±×ÀλóÅÂÀÔ´Ï´Ù.</td> <td width="65" rowspan="3" align="right"><img src="../img/login/btn_logout.gif" onClick="logout();" style="cursor:hand;" width="63" height="48"></td> </tr> <tr> <td class="txt03"> <img src="../img/common/cray_box.gif" width="4" height="4" hspace="5" align="absmiddle"><a href="../html/mypage.php">³»Á¤º¸ ¼öÁ¤Çϱâ </td> </tr> <tr> <td class="txt03"> <img src="../img/common/cray_box.gif" width="4" height="4" hspace="5" align="absmiddle">»ç¿ë ÇÁ·Î±×·¥ : <?=$programName[1];?> </td> </tr> </table> </td> </tr> </table> <!------·Î±×ÀÎâ ÇÁ·¹ÀÓ Å×ÀÌºí ³¡-----------> <? } ?>
|