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
|
<? include_once("./common.php"); $sql = "select r.idx, r.user_id, r.cdkey, r.user_name, r.app_code, r.enddate, r.license_pc, r.license_pda, r.sale_amount, r.bigo, r.rgst_dtm, c.cde_nm, c.flag3 from regist_user r LEFT JOIN codes c ON (r.app_code = c.cde) WHERE idx = '{$idx}'"; $result = mysql_query($sql); $row = mysql_fetch_array($result);
?> <!DOCTYPE html> <html lang="ko"> <head> <meta charset="euc-kr"> <title>¹ÌÁø¼ÒÇÁÆ® - Mac Á¤º¸°ü¸® ÆäÀÌÁö</title> <link href="css/macInformation.css" rel="stylesheet" /> </head>
<body> <form name="" id="" action="" method="post"> <div class="macWrap1"> <div class="logo"><img src="images/logo.png" alt="¹ÌÁø¼ÒÇÁÆ®"></div>
<div class="macWrap2"> <div class="header"> <h1><img src="images/mac_title.png" alt="MacAddredd Á¤Ç°ÀÎÁõ"></h1> <p>°í°´´ÔÀÇ Mac Address Á¤º¸¸¦ °ü¸® ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.</p> </div>
<table class="macContainer">
<caption> ÀÎÁõÁ¤º¸ <span class="logout"><a href="login.php"><img src="images/btn_logout.png" alt="·Î±×¾Æ¿ô"></a></span> </caption>
<colgroup> <col width="30%"><col width="70%"> </colgroup>
<tr> <th>ȸ¿ø ¾ÆÀ̵ð</th> <td>kimeun0727</td> </tr> <tr> <th>»óÈ£¸í [¼º¸í]</th> <td>(ÁÖ)MJS [±èÀºÁ¤]</td> </tr> <tr> <th>CD-Key</th> <td>9849-0600-4808</td> </tr> <tr> <th>ÇÁ·Î±×·¥</th> <td>õ³â½º¸¶Æ®°áÁ¦</td> </tr> <tr> <th>¸¸·áÀÏÀÚ</th> <td>2099-12-31</td> </tr> <tr> <th>¶óÀ̼¾½º</th> <td>2´ë <a href="http://mijinsoft.co.kr/mac_confirm/userMacInformation.php" style="vertical-align:middle;"><img src="images/btn_mac.png" alt="Mac°ü¸®"></a></td> </tr> </table> </div><!-- //macWrap2-->
<div class="macFooter"> <img src="images/copyright.png" alt="Ä«ÇǶóÀÌÆ®"> </div> </div><!-- smsWrap1--> </form> </body> </html>
|