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
|
<?php include_once("./_common.php"); if($_SESSION['intro_pos']=='Y'){ include_once($j3_path."/header.sub.php"); skin_module_show("intro",$sample_idx); // 상품 상세 스킨을 불러온다. } else { include_once($j3_shopm_path."/shop_header.php"); }
$cinfo = content_info_get_by_id($co_id); // 해당되는 내용 가져온다.
$list_array = content_list_get(); // 내용 리스트 불러온다. ?> <div id="wrap"> <div id="container" class="" style='<?php if($_COOKIE['hd_height']!='' && $header_fixed=='1'){ echo "margin-top:{$_COOKIE['hd_height']}px !important;"; }?>'>
<?php skin_module_show("content",$sample_idx); // 내용페이지 스킨을 불러온다. ?>
</div><!-- #container --> </div><!-- #wrap --> <?php include_once($j3_shopm_path."/shop_footer.php"); ?>
|