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
|
<?php include_once("./_common.php"); if($idx!=''){ $sql = "select a.*, b.name from shop_prod_use a left join product_m b on a.pcode = b.code where idx = '{$idx}' "; $cinfo = sql_fetch($sql,$connect_j3); } ?>
<form name='prod_qa_reg_form' id='stock_reg_form' method='post' action=''> <input type='hidden' name='qstr' value=''> <input type='hidden' name='code' value='<?php echo $cinfo['idx'];?>'> <input type='hidden' name='ccode' value='<?php echo $cinfo['ccode'];?>'>
<div class="p10_20"> <h4 class="mb10 height24 gray_line_b">상품후기</h4> <table class="width_full top_bold_line"> <caption class="mt10 mb10 l_height30 txt17 align_l bold">상품후기 보기 <!--<a><span class="more float_r pl10 box120_30 txt13 gray_line">나의 상담내역</span></a>--></caption> <colgroup> <col class="width80"><col><col class="width140"><col class="width200"> </colgroup>
<tbody> <tr> <th colspan="2" class="pt10 pb10 pl20 txt14 gray2 gray_line_b2 bg_gray">후기제목</th> <th class="pt10 pb10 pl20 txt14 gray2 gray_line_b2 bg_gray">작성자</th> <th class="pt10 pb10 pl20 txt14 gray2 gray_line_b2 bg_gray">작성일</th> </tr>
<tr> <td colspan="2" class="pt10 pb10 pl20 txt14 gray2 gray_line_b2"> <img src='<?php echo "{$j3_img_url}/sub01/s_star{$cinfo['iu_score']}.png";?>'> <?php echo $cinfo['iu_subject'];?> </td> <td class="pt10 pb10 pl20 txt14 gray2 align_c gray_line_b2"> <?php echo cut_hangul_last(substr($cinfo['iu_name'],0,3))."**";?> </td> <td class="pt10 pb10 pl20 txt14 gray2 align_c gray_line_b2"> <?php echo $cinfo['iu_time'];?> </td> </tr> <tr> <td colspan="4" class="p10_20 txt14 gray2 gray_line_b2 bg_gray l_height25"><?php echo $cinfo['iu_content'];?></td> </tr> <tr> <td colspan="4" class="p10_20 txt14 gray2 gray_line_b2 l_height25"> <?php if(file_exists($j3_data_path."/item_use/iu_".$cinfo['ct_idx'])){ echo "<img src='".$j3_data_url."/item_use/iu_".$cinfo['ct_idx']."' style='max-width:500px;'>"; } ?> </td> </tr> </table> </div> </form>
|