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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
|
<? session_start(); include_once("./_common.php"); ?>
<!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> <? include("./commonST.php"); ?> <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/adminmobile/img/homeicon.png" /> <link href="http://www.mijinsoft.co.kr/html/adminmobile/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"> <? $qry = "SELECT sdate, cate, prodname, proddetail, bank, rmoney, recvname, dam1, dam2, custname, tel1, tel2, zipcode, addr, bigo , purchase_path, purchase_reason FROM sale_list
WHERE code = '$code' "; $result = mysql_query($qry); // echo $qry; ?>
<?
while($row = mysql_fetch_array($result)){ ?> <table border="1" cellpadding="0" cellspacing="0" width="100%" valign="top" align="center" bgcolor="#cccccc" style="border-collapse:collapse"> <tr class="txt01w" height="32" bgcolor="#af191e"> <td width="20%" align="center"> ³¯ÀÚ </td> <td width="30%" align="center" bgcolor="#ffffff" class="txt03"> <?=$row[sdate]?> </td> <td width="20%" align="center"> ±¸ºÐ </td> <td width="30%" align="center" bgcolor="#ffffff" class="txt03"> <?=$row[cate]?> </td> </tr> <tr class="txt01w" height="32" bgcolor="#af191e"> <td width="20%" align="center"> Á¦Ç°¸í </td> <td width="30%" align="left" bgcolor="#ffffff" class="txt03" colspan="3"> <?=$row[prodname]?> </td> </tr> <tr class="txt01w" height="32" bgcolor="#af191e"> <td width="20%" align="center"> »ó¼¼³»¿ª </td> <td width="30%" align="left" bgcolor="#ffffff" class="txt03" colspan="3"> <?=$row[proddetail]?> </td> </tr> <tr class="txt01w" height="32" bgcolor="#af191e"> <td width="20%" align="center"> ±¸¸Å°æ·Î(Àüȯ»çÀ¯) </td> <td width="30%" align="left" bgcolor="#ffffff" class="txt03" colspan="3"> <?=$row[purchase_path]?> </td> </tr> <tr class="txt01w" height="32" bgcolor="#af191e"> <td width="20%" align="center"> ±¸¸Å»çÀ¯ </td> <td width="30%" align="left" bgcolor="#ffffff" class="txt03" colspan="3"> <?=$row[purchase_reason]?> </td> </tr> <tr class="txt01w" height="32" bgcolor="#af191e"> <td width="20%" align="center"> ÀºÇà </td> <td width="30%" align="center" bgcolor="#ffffff" class="txt03"> <?=$row[bank]?> </td> <td width="20%" align="center"> ÀÔ±Ý¾× </td> <td width="30%" align="center" bgcolor="#ffffff" class="txt03"> <?=number_format($row[rmoney])?> </td> </tr> <tr class="txt01w" height="32" bgcolor="#af191e"> <td width="20%" align="center"> ÀÔ±ÝÀÚ </td> <td width="30%" align="center" bgcolor="#ffffff" class="txt03"> <?=$row[recvname]?> </td> <td width="20%" align="center"> »ó´ãÀÚ </td> <td width="30%" align="center" bgcolor="#ffffff" class="txt03"> <?=$row[dam1]?> </td> </tr> <tr class="txt01w" height="32" bgcolor="#af191e"> <td width="20%" align="center"> »óÈ£ </td> <td width="30%" align="center" bgcolor="#ffffff" class="txt03"> <?=$row[custname]?> </td> <td width="20%" align="center"> ÀԱݱâ·Ï </td> <td width="30%" align="center" bgcolor="#ffffff" class="txt03"> <?=$row[dam2]?> </td> </tr> <tr class="txt01w" height="32" bgcolor="#af191e"> <td width="20%" align="center"> ÀüÈ1 </td> <td width="30%" align="left" bgcolor="#ffffff" class="txt03" colspan="3"> <?=$row[tel1]?> </td> </tr> <tr class="txt01w" height="32" bgcolor="#af191e"> <td width="20%" align="center"> ÀüÈ2 </td> <td width="30%" align="left" bgcolor="#ffffff" class="txt03" colspan="3"> <?=$row[tel2]?> </td> </tr> <tr class="txt01w" height="32" bgcolor="#af191e"> <td width="20%" align="center"> ¿ìÆí¹øÈ£ </td> <td width="30%" align="left" bgcolor="#ffffff" class="txt03" colspan="3"> <?=$row[zipcode]?> </td> </tr> <tr class="txt01w" height="32" bgcolor="#af191e"> <td width="20%" align="center"> ÁÖ¼Ò </td> <td width="30%" align="left" bgcolor="#ffffff" class="txt03" colspan="3"> <?=$row[addr]?> </td> </tr> <tr class="txt01w" height="32" bgcolor="#af191e"> <td width="20%" align="center"> ºñ°í </td> <td width="30%" align="left" bgcolor="#ffffff" class="txt03" colspan="3"> <?=$row[bigo]?> </td> </tr> <? } ?> <tr bgcolor="#ffffff" height="32"> <td colspan="4" align="center" class="txt01"> <a href="javascript:parent.CloselayerPop();"><div class="popbutton">´Ý±â</div></a> </td> </tr> </table> </body> </html>
|