작성일 : 15-07-01 01:51
|
[GNU] 그누보드 리스트에서 이미지 파일 (갤러리) 불러오기
|
|
|
글쓴이 :
조형래
 조회 : 2,719
|
상단에 인크루드가 되어야 한다
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
리스트 내부에 하단의 내용 입력
<?php
$thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $board['bo_gallery_width'], $board['bo_gallery_height']);
if($thumb['src']) {
echo $thumb['src'];
}
?>
|
|