일반게시판 view에서 첨부파일 2번째 등록된 파일 출력되게
본문
일반게시판 view에서 첨부파일 2번째 등록된 파일 출력되게 하려면 어떻게해야하나요?
<?php
// 파일 출력
$v_img_count = count($view['file']);
if($v_img_count) {
echo "<div id=\"bo_v_img\">\n";
foreach($view['file'] as $view_file) {
echo get_file_thumbnail($view_file);
}
echo "</div>\n";
}
?>
답변 1
참고하세요.
https://gnustudy.com/bbs/board.php?bo_table=skin_board&wr_id=63
전체를 이렇게 변경.
if ($view['file'][1]['view']) {
echo get_view_thumbnail($view['file'][1]['view']);
}
답변을 작성하시기 전에 로그인 해주세요.