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
|
<?php Global $j3_data_url, $j3_img_url, $j3_shop_url, $j3_data_path; $cur_img_url = $j3_img_url."/".$sk['sk_img_path'];
?>
<ul class="event_item_list banner_ul_<?php echo $sk_idx;?>"> <?php foreach($ev_array as $key=>$info){ $ev_img_url = $j3_data_url."/ico/ev_banner_".$info['idx']; if(!file_exists($j3_data_path."/ico/ev_banner_".$info['idx'])){ $ev_img_url = "http://via.placeholder.com/390x210"; } $ev_url = $j3_shop_url."/event.php?idx=".$info['idx'];
if($key==2){ $mr0_class = "mr0"; } else { $mr0_class = "mr15"; } ?> <!--기획전1--> <!--기획전1--> <li> <a href="<?php echo $ev_url;?>"> <div class="event_item_img"> <em class="event_item_type">기획</em> <img src="<?php echo $ev_img_url;?>" alt="<?php echo $info['ev_subject'];?>"> </div> <div class="event_item_tit"> <p><?php echo $info['ev_subject'];?></p> <p></p> </div> <em class="event_item_go">go</em> </a> </li> <?php } ?> </ul>
|