첨부파일 일반페이지에서 출력
본문
게시판 리스트에는 출력이 잘되는데요
다른 페이지에서 불러 올 땐 쿼리를 줘야 하는지
출력이 안나오고 엑박에 이미지 주소 도차 찍히지 않는데요
방법이 없을까요
<?
$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
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];
}
스킨 작업했던 소스 복붙했습니다. 적당히 수정해보세요~
$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];
}
스킨 작업했던 소스 복붙했습니다. 적당히 수정해보세요~
답변을 작성하시기 전에 로그인 해주세요.