갤러리게시판 링크 질문입니다!
본문
갤러리 게시판의 링크를,
리스트에서 이미지 클릭시, 바로 넘어갈 수 있게 하고 싶습니다.
view.skin 은 쓰지 않을거구요,
list.skin.
<li class="gall_href">
<a href="<?php echo $list[$i]['href'] ?>">
<?php
if ($list[$i]['is_notice']) { // 공지사항 ?>
<strong style="width:<?php echo $board['bo_gallery_width'] ?>px;height:<?php echo $board['bo_gallery_height'] ?>px">공지</strong>
<?php } else {
$thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $board['bo_gallery_width'], $board['bo_gallery_height']);
if($thumb['src']) {
$img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$board['bo_gallery_width'].'" height="'.$board['bo_gallery_height'].'">';
} else {
$img_content = '<span style="width:'.$board['bo_gallery_width'].'px;height:'.$board['bo_gallery_height'].'px">no image</span>';
}
echo $img_content;
}
?>
</a>
</li>
에서 바로 링크타게끔요(게시물업로드시 입력했던 링크주소로)
방법 아시는 분 있을까요 ㅠㅠ! 이래저래 해봤는데, 저는 잘 안되네요...
답변 1
글쓰기로
링크를 저장하게 되면 데이터 베이스의
wr_link1 컬럼에 저장됩니다.
따라서 간단하게 출력 하시려면
$list[$i]['href'] 코드를
$list[$i]['wr_link1']
로 변경 하시면 될듯 합니다.