메인페이지에 게시글 가져올때 클릭시 바로 저장된 링크로 이동할 수 있나요?
본문
메인페이지에 갤러리 게시판의 목록을 뿌려주는것 까지는 했습니다만 클릭시 저장된 wr_link1 로 바로 이동하려고 하니
잘 안되네요;
<?php
$bo_table = "templates";
$sql = "SELECT * FROM g5_write_$bo_table where ca_name = '카테고리' ORDER BY wr_datetime ASC";
$result = sql_query($sql);
for ($i = 1; $row = sql_fetch_array($result); $i++){
$thumb = get_list_thumbnail($bo_table, $row["wr_id"], "429", "387", false, true);
if($thumb['src']) {
$wr_img = $thumb['src'];
} else {
$wr_img = "/image/thumb.png";
}
?>
<div class="item" onclick="location.href=''">
<img src="<?=$wr_img?>" alt="">
<div class="tem_txt">
<p><?=$row['wr_subject']?></p>
<p><?=$row['wr_content']?></p>
</div>
</div>
<?php } ?>
onclick="location.href=''" 안에 wr_link1 을 불러와서 이동시키려면 어떻게 수정해야하나요?
조언 부탁드립니다.
감사합니다.
!-->답변 4
<div class="item" onclick="location.href='<?php echo $row["wr_link1"]?>'">
이거요?
!-->최신글 latest 말한건가요??
<div class="item" onclick="location.href='<?php echo $row['wr_link1'];?>'">
onclick="location.href='<?php echo $row['wr_link1']; ?>'"
답변을 작성하시기 전에 로그인 해주세요.