1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php include("./_common.php"); $rel_prod_array = prod_paral_get($code, $admin_page, 9999); //추가옵션 상품을 가져온다.
foreach($rel_prod_array as $key=>$info){ ?> <tr> <td class='tcenter2'><input type='checkbox' name='prod_idx[]' value='1' class='acc_idx'><input type='hidden' name='ccode4[]' value='<?php echo $info['paral_pcode'];?>'></td> <td class='tcenter2'><img src='<?php echo $thumb_file = get_it_thumbnail($info['pcode'],$info['pic1'],50,50);?>' onerror='this.style.display="none"'></td> <td><?php echo $info['cate_name'];?></td> <td class='tcenter2'><?php echo $info['code1'];?></td> <td><?php echo $info['name'];?></td> <td class='cost'><?php echo $info['saleprice'];?></td> <td class='tcenter2'><input type='text' name='prod_seq4[]' value='<?php echo $info['seq'];?>' class='width_60'></td> </tr> <?php } ?>
|