갤러리게시판 엑박
본문
안녕하세요 질문좀 드리겠습니다
글을올리면 리스트 부분에서는 엑박이뜨는데 왜그러는걸까요..?
리스트부분 소스
<?php echo G5_DATA_URL.'/file/'.$bo_table.'/'.get_view_thumbnail($list[file][0][file]); ?>
저위방법말고는 없나요 ?
답변 1
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
상단에 썸네일 lib 붙이시고
$thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $board['bo_gallery_width'], $board['bo_gallery_height']);
if($thumb['src']) {
$img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$board['bo_gallery_width'].'" height="'.$board['bo_gallery_height'].'">';
} else {
$img_content = '<span style="width:'.$board['bo_gallery_width'].'px;height:'.$board['bo_gallery_height'].'px">no image</span>';
}
echo $img_content;
이렇게 하시면 되지 않을까요?
!-->
답변을 작성하시기 전에 로그인 해주세요.