view.skin.php 질문 드립니다.
본문
<div id="store_view">
<div id="store_thumb">
<?php
// 파일 출력
$v_img_count = count($view['file']);
if($v_img_count) {
echo "<div id=\"bo_v_img\">\n";
for ($i=0; $i<=count($view['file']); $i++) {
if ($view['file'][$i]['view']) {
//echo $view['file'][$i]['view'];
echo get_view_thumbnail($view['file'][$i]['view']);
}
}
echo "</div>\n";
}
?>
</div>
<div id="store_images">
<img id="big_image" src="여기다 첫번째 이미지를 큰이미지로 넣고 싶습니다." style="width:460px;height:320px;">
</div>
</div>
처음 이미지를 이미지소스 자리에다 크게 출력해서 넣고 싶습니다.
답변 1
<img id="big_image" src="/data/file/<?=$bo_table."/".$view['file'][0]['file']?>" style="width:460px;height:320px;">