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
|
<? /* Á¦Ç° Á¤º¸ Ãâ·Â ÆäÀÌÁö
*/ $position = "¾÷±×·¹À̵å"; $page_title = "¾÷±×·¹À̵å"; $sub_title = "Á¦Ç° ÀÚ¼¼È÷º¸±â"; $upgrade_menu = "m_b_menber_on.gif"; require "./inc/config.php"; require "./main_file/header.html";
//require_once($ADMIN_DIR . "/upgrade/upgrade_class.php"); $m_board_class = new m_board_class();
$query = "select * from mijin_pro_store where uid ='$uid'"; $result = mysql_query($query); $row = mysql_fetch_array($result); $content = nl2br(stripslashes($row[content]));
?> <TABLE height=18 cellSpacing=0 cellPadding=0 width=630 align=center border=0> <TBODY> <TR> <TD width=7><IMG height=18 src="images/q&a_td_1.gif" width=7></TD> <TD vAlign=bottom width=623 background=images/q&a_td_2.gif> <IMG height=9 src="images/bar1_2.gif" width=5> <FONT color=#ffffff><?=$page_title?></FONT> </TD> </TR> </TBODY> </TABLE> <BR>
<table cellspacing="1" cellpadding="0" width="630" border="0" bgcolor="#9B9B9B" align="center"> <tr><td> <table cellspacing="0" cellpadding="0" width="630" border="0" height="22" bgcolor="#E0E3E5" align="center"> <tr> <td width="15%" align="center"><font color="#173771"> ¹øÈ£ : <b><?=$row[uid]?></b></font></td> <td align="center"><font color="#173771">Á¦¸ñ : <b><?=$row[subject]?></b></font></td> <td width="15%" align="center"><font color="#173771">Á¶È¸ : <b><?=$row[hit]?></b></font> </td> </tr> </table> </td></tr> </table> <table cellspacing="0" cellpadding="0" border="0" width="630" bgcolor="#9B9B9B" align="center"> <tr><td> <table cellspacing="1" cellpadding="10" border="0" width="630" align="center"> <tr height="25"> <td width="80" align="right" bgcolor="#ECEAEA"><font color="#173771">ÆÄÀÏ </font></td> <td bgcolor="white"> </td> </tr> <tr> <td width="80" align="right" bgcolor="#ECEAEA"><font color="#173771">³»¿ë </font> </td> <td align="left" bgcolor="white" > <?=$content?> </td></tr></table> </td></tr> </table> <table cellpadding="0" cellspacing="0" border="0" width="579"> <tr> <td align="center" width="100%" height="30" bgcolor="#ffffff"><a href="w_pro_pds.php"><img SRC="images/list.gif" border="0" WIDTH="54" HEIGHT="21"></a></td> </tr> </table><br>
<?require "./main_file/footer.html"; ?>
|