그누보드 [G5] 본문에서 이미지 추출
페이지 정보
본문
본문에서 첨부된 첫번째 이미지 파일을 추출하라는 방법입니다.
skin / board / basic / view.skin.php 의 적당한 곳에 삽입합니다.
<?php
// 파일 출력
$v_img_count = count($view['file']);
if($v_img_count) {
if ($view['file'][0]['view']) {
$file = sql_fetch("select * from {$g5['board_file_table']} where bo_table='{$bo_table}' and wr_id='{$write['wr_id']}' and bf_no='0'");
?>
<img src="<?php echo G5_DATA_URL."/file/{$bo_table}/{$file['bf_file']}"; ?>" style="max-width:520px;">
<?php
}
}
?>
참고자료
https://sir.kr/g5_tip/8185
skin / board / basic / view.skin.php 의 적당한 곳에 삽입합니다.
<?php
// 파일 출력
$v_img_count = count($view['file']);
if($v_img_count) {
if ($view['file'][0]['view']) {
$file = sql_fetch("select * from {$g5['board_file_table']} where bo_table='{$bo_table}' and wr_id='{$write['wr_id']}' and bf_no='0'");
?>
<img src="<?php echo G5_DATA_URL."/file/{$bo_table}/{$file['bf_file']}"; ?>" style="max-width:520px;">
<?php
}
}
?>
참고자료
https://sir.kr/g5_tip/8185
댓글목록
등록된 댓글이 없습니다.