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
|
<?php header("Content-type:text/html;charset=euc-kr"); ?> <? //»óǰ¼³¸í 20160224 ±èÀºÁ¤ $cate2_code = '07'; $category_code = "21"; if( isset($category_code) && $category_code !== "" && isset($cate2_code) && $cate2_code !== ""){
$cate3Qry = " SELECT * FROM cate3_info WHERE cate2_code = '$cate2_code' and category_code = '$category_code' ";
$cate3Result = MYSQL_QUERY($cate3Qry);
if( MYSQL_NUM_ROWS($cate3Result) > 0 ){
$cate3Row = MYSQL_FETCH_ARRAY($cate3Result); $cate3Name = explode( "->" , $cate3Row['category_name']); } } ?> <div class="productSection"> <table class="productTable"> <tr> <th> <span class="dot"></span> <span class="title"><img src="./img/product/p_01.jpg" alt="Á¦Ç°¸í"></span> <span class="colon">:</span> </th> <td width="120"><?=$cate3Row['programName'];?></td>
<th> <span class="dot"></span> <span class="title"><img src="./img/product/p_02.jpg" alt="¹öÀü"></span> <span class="colon">:</span> </th> <td width="180"><font color="#5e8f00"><b><?=$cate3Row['version'];?></b></font></td> </tr>
<tr> <th> <span class="dot"></span> <span class="title"><img src="./img/product/p_03.jpg" alt="µ¥ÀÌÅÍÀúÀå"></span> <span class="colon">:</span> </th> <td><?=$cate3Row['save_data'];?></td> <th> <span class="dot"></span> <span class="title"><img src="./img/product/p_04.jpg" alt="ÆÄÀÏÅ©±â"></span> <span class="colon">:</span> </th> <td><?=$cate3Row['file_size'];?></td> </tr>
<tr> <th> <span class="dot"></span> <span class="title"><img src="./img/product/p_05.jpg" alt="ÆÇ¸Å¹æ½Ä"></span> <span class="colon">:</span> </th> <td colspan="3"><?=$cate3Row['sales_system'];?></td> </tr>
<tr> <th> <span class="dot"></span> <span class="title"><img src="./img/product/p_06.jpg" alt="¿î¿µÃ¼Á¦"></span> <span class="colon">:</span> </th> <td colspan="3"><?=$cate3Row['operating_system'];?></td> </tr>
<tr> <th> <span class="dot"></span> <span class="title"><img src="./img/product/p_07.jpg" alt="°¡°Ý"></span> <span class="colon">:</span> </th> <td colspan="3"><?=$cate3Row['retail_price'];?><b><font color="#ed702d"> ¡æ <?=$cate3Row['selling_price'];?></td> </tr>
<tr> <th> <span class="dot"></span> <span class="title"><img src="./img/product/p_08.jpg" alt="¹è¼Û¹æ½Ä"></span> <span class="colon">:</span> </th> <td colspan="3"><?=$cate3Row['shipping_charge'];?></td> </tr> </table>
<div class="productRightBtn"> <p><a href="./customerprice.php"><img src="./img/product/quick_estimate.jpg" alt="°ßÀû¿äû"></a></p> <p><a href="./buypaper.php?category_code=07"><img src="./img/product/quick_buy_paper.jpg" alt="¿ëÁö±¸¸Å"></a></p> </div>
</div><!-- //productSection -->
|