첨부파일(이미지)이 있을 때만 출력해야함
<?php
// 파일 출력
$v_img_count = count($view['file']);
if($v_img_count) {
for ($i=1; $i<=count($view['file']); $i++) { // 원래 $i=0, 두번째 부터 출력하기 위해 $i=1
$image[$i] = G5_URL."/data/file/$bo_table/".$view['file'][$i]['file'];
if ($view['file'][$i]['view']) {
?>
<div class="img">
<?php echo $view['file'][$i]['view'] ?>
</div>
<?php
}
}
}
?>
728x90