/home/mjc1/public_html/j3demo/shop/event.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
<?php
include_once("./_common.php");
include_once(
$j3_shop_path."/shop_header.php");

$sql "select idx, ev_type, ev_subject from shop_event where ev_use = '1' order by reg_date"// 이벤트 리스트를 가져온다.
$res mysql_query($sql,$connect_j3);
while(
$info mysql_fetch_array($res)){
    
$ev_list[] = $info;
}
$ev_info event_code_info($idx);

$qstr $_SERVER['QUERY_STRING'];
?>
<div id="container">
    <div id="wrapper">

<?php
    skin_module_show
("event",$sample_idx); // 이벤트 리스트 스킨을 불러온다.
?>

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