/home/mjc1/public_html/j3demo/shop/content.php


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_shop_path."/shop_header.php");
}

$cinfo content_info_get_by_id($co_id); // 해당되는 내용 가져온다.

$list_array content_list_get(); // 내용 리스트 불러온다.

?>
<div id="container">
    <div id="wrapper">

<?php
    skin_module_show
("content",$sample_idx); // 내용페이지 스킨을 불러온다.
?>

    </div><!-- #wrapper -->
</div>
<?php
include_once($j3_shop_path."/shop_footer.php");
?>