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
|
<?php Global $list_array, $total_count;
qstr_extract($_SERVER['QUERY_STRING']); // $qstr을 $_GET변수에 넣는다. extract($_GET); // $_GET를 변수로 풀어준다. $cate = urldecode($cate);
$cur_img_url = $j3_img_url."/".$sk['sk_img_path'];
if($skin_css!=''){ echo $skin_css; } else { ?> <!-- 상단 카테고리 내 위치 --> <style>
</style> <?php }?> <div class="class_skin_idx_<?php echo $sk_idx;?>"> <h1 class="p15_0 align_c">위시리스트</h1>
<p class="p0_10 txt14 l_height40 gray_line_t gray_line_b2"> <input type="checkbox" class="mr5 box17 check_all_class" ><label class="bold">전체선택</label> </p> <form name='wish_list_form' id='wish_list_form' method='post' onsubmit='return false;'> <input type='hidden' name='sel_del' id='sel_del' value=''> <!-- 찜목록 --> <div> <h2 class="screen_out">주문정보</h2> <?php for($i=0;$i<count($list_array);$i++){ $info = $list_array[$i]; if($info['idx']!=''){ ?> <!-- 상품1 --> <section class="p10_0 p0_10 gray_line_b2 separate_line"> <table> <tr> <th> <input type='checkbox' name='code_idx[]' value='<?php echo $i;?>' class='code_idx_calss'> <input type='hidden' name='codes[]' value='<?php echo $info['idx'];?>'> <input type='hidden' name='opt_mode[]' value='<?php echo $info['opt_mode'];?>'> <input type='hidden' name='pcode[]' value='<?php echo $info['pcode'];?>'> <input type='hidden' name='opt_code[]' value='<?php echo $info['opt_pcode'];?>'> <input type='hidden' name='ct_name[]' value='<?php echo $info['name'];?>'> <input type='hidden' name='ct_price[]' value='<?php echo $info['saleprice'];?>'> <input type='hidden' name='opt_price[]' value='<?php echo $info['optprice'];?>'> </th> <td class="align_c"><img src="<?php echo $thumb_file = get_it_thumbnail($info['pcode'],$info['pic1'],80,80);?>" alt="제품이미지" class=""></td> <td class="pl10 txt15 bold align_j valign_t"> <span class="red"><?php if($info['opt_mode']=='opt'){ echo "옵션"; } else if($info['opt_mode']=='addopt'){ echo "추가옵션"; }?></span> <?php echo $info['pname']; if($info['opt_mode']!=''){ echo " : ".$info['opt_name']; }?> <p class="mt5 txt13"><?php echo $info['norm'];?></p> </td> </tr> </table> <dl class="mt7 p5_0 p0_10 height26 gray_line2 bg_gray"> <dt class="screen_out">수량/순서 지정</dt> <dd class="float_l block width_50 height24"> <label class="txt13 bold">수량</label> <input type="text" title="구매수량" name='ws_qty[]' value='<?php echo $info['ws_qty']?>' class="width50 height24 align_c gray_line"> </dd> <dd class="float_l block width_50 height24"> <label class="txt13 bold">순서</label> <input type="text" title="구매수량" name='ws_seq[]' value='<?php echo $info['ws_seq']?>' class="width50 height24 align_c gray_line"> </dd> </dl> <div class="mt7 height32"> <a class="block float_l width_49 height30 custom2 txt14 align_c l_height30 bg_white custom_line2 wish_del_class">상품삭제</a> <a class="block float_r width_49 height32 white txt14 align_c l_height32 bg_custom2 wish_add_cart_class">장바구니</a> </div> </section> <!-- //상품1 --> <?php } } ?> </div> <!-- //찜목록 --> </form> <!-- 전체선택 --> <p class="p0_10 txt14 l_height40 gray_line_b2 separate_line"> <input type="checkbox" class="mr5 box17 check_all_class"><label class="bold">전체선택</label> </p> <!-- //전체선택 -->
<section class="p15_0 p0_10 height35 bg_gray"> <input type="submit" value="선택삭제" class="float_l mr5 width_triple height37 txt15 l_height35 gray_line4 bg_white pointer wish_sel_del_class"/> <input type="submit" value="선택수정" class="float_l mr5 width_triple height37 white txt15 l_height37 none_line bg_custom3 pointer wish_seq_class"/> <input type="submit" value="장바구니담기" class="float_l width_triple height37 white txt15 l_height37 none_line bg_custom1 pointer wish_cart_class"/> </section> </div>
|