첨부파일 일반페이지에서 출력 채택완료

게시판 리스트에는 출력이 잘되는데요
다른 페이지에서 불러 올 땐 쿼리를 줘야 하는지 
출력이 안나오고 엑박에 이미지 주소 도차 찍히지 않는데요
방법이 없을까요

<?
$image1 = urlencode($list[$i][file][0][file]);
if (preg_match("/\.(gif|jpg|png)$/i", $image))
?>

<img src='<?=$g5[path]?>/data/file/<?=$bo_table?>/<?=$image1?>' width=100 height=65/>

답변 1개

채택된 답변
+20 포인트
include_once("./_common.php");

$board['bo_table'] = "bo_table명";
$list['wr_id'] = "wr_id값";

$list['file'] = get_file($board['bo_table'], $list['wr_id']);

$count_photo = count($list['file']);
for ($i=0; $i<=$count_photo; $i++) {
    if ($list[file][$i][view]) echo $list[file][$i][view];
}

스킨 작업했던 소스 복붙했습니다. 적당히 수정해보세요~
로그인 후 평가할 수 있습니다

댓글을 작성하려면 로그인이 필요합니다.

답변을 작성하려면 로그인이 필요합니다.

로그인
🐛 버그신고