그누보드5.3 썸내일 출력하고 싶습니다. 썸내일 출력문제
관련링크
http://12
183회 연결
본문
아래와 같이해서 헤드 부분에 첨부해 이미지 썸내일을 출력하려 합니다.
근데 어떤이유인지 썸내일 이미지가 출력이 안되네요.. 고수님들 도와주십시요
<?php
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
if ($bo_table) {
$sql_head = " select * from {$g5['write_prefix']}{$bo_table} ";
if ($wr_id) {
$sql_head .= " where wr_id='{$wr_id}' ";
}
$result_head = sql_query($sql_head);
$row_head = sql_fetch_array($result_head);
}
$bo_table=$bo_table;
$wr_id=$wr_id;
$bo_gallery_width=150;
$bo_gallery_height=100;
$thumb = get_list_thumbnail($bo_table, $wr_id, $bo_gallery_width, $bo_gallery_height);
echo $thumb;
?>
답변 1
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
$thumb = get_list_thumbnail(테이블 이름, 게시물의wr_id 값 ,생선하는 가로값,세로값 );
echo $thumb['src'];//이미지의 경로값
답변을 작성하시기 전에 로그인 해주세요.