다음글 이전글 노출시킬때 문의드립니다.
본문
고수님들 덕분에 아래처럼 반영했습니다.
그런데 이전글 없을때는
===================================================================
이전글 이전글이 없을니다 1970-01-01
다음글 그누보드 좋아요 1970-01-01
===================================================================
위에 처름 다음글은 있는데 날짜부분이 위아래 똑같이 나옵니다.
자문 부탁드리겠습니다.
[cpde]
<!-- { 이전글 다음글 -->
<div class="tbl_head01 tbl_wrap">
<table>
<caption><?php echo $board['bo_subject'] ?> 이전글 다음글 보기</caption>
<thead>
<tr>
<td scope="col">이전글 <img src="<?php echo $board_skin_url ?>/img/arr_prev.png" title="이전글"></td>
<td scope="col" class="td_subject"><?php if ($prev_href) { ?><a href="<?php echo $prev_href ?>"><?php echo $prev_wr_subject; ?></a><?php } else { ?>등록된 게시물이 없습니다<?php } ?></td>
<td scope="col" style="text-align:right;"><?php echo date("Y-m-d", strtotime($prev['wr_datetime'])) ?></td>
</tr>
<tr>
<td scope="col">다음글 <img src="<?php echo $board_skin_url ?>/img/arr_next.png" title="다음글"></td>
<td scope="col" class="td_subject"><?php if ($next_href) { ?><a href="<?php echo $next_href ?>"><?php echo $next_wr_subject; ?></a><?php } else { ?>등록된 게시물이 없습니다<?php } ?></td>
<td scope="col" style="text-align:right;"><?php echo date("Y-m-d", strtotime($prev['wr_datetime'])) ?></td>
</tr>
</table>
</div>
<!-- } 이전글 다음글 끝 -->
[/code]
답변 2
이전글과 다음글 날짜를 똑같이 해놨네요.
1970-01-01 이렇게 출력되는 건 없는 글의 날짜를 불러와서 그런 겁니다.
이전글과 다음글이 더 이상 없으면 날짜도 안 보이게 해야겠죠.
이전글 날짜
<?php if ($prev_href) echo date("y-m-d", strtotime($prev['wr_datetime'])) ?>
다음글 날짜
<?php if ($next_href) echo date("y-m-d", strtotime($next['wr_datetime'])) ?>
http://gnustudy.com/bbs/board.php?bo_table=skin_board&wr_id=64 참고해 보세요.
[cpde]
<!-- { 이전글 다음글 -->
<div class="tbl_head01 tbl_wrap">
<table>
<caption><?php echo $board['bo_subject'] ?> 이전글 다음글 보기</caption>
<thead>
<tr>
<td scope="col">이전글 <img src="<?php echo $board_skin_url ?>/img/arr_prev.png" title="이전글"></td>
<td scope="col" class="td_subject"><?php if ($prev_href) { ?><a href="<?php echo $prev_href ?>"><?php echo $prev_wr_subject; ?></a><?php } else { ?>등록된 게시물이 없습니다<?php } ?></td>
<td scope="col" style="text-align:right;"><?php echo date("Y-m-d", strtotime($prev['wr_datetime'])) ?></td>
</tr>
<tr>
<td scope="col">다음글 <img src="<?php echo $board_skin_url ?>/img/arr_next.png" title="다음글"></td>
<td scope="col" class="td_subject"><?php if ($next_href) { ?><a href="<?php echo $next_href ?>"><?php echo $next_wr_subject; ?></a><?php } else { ?>등록된 게시물이 없습니다<?php } ?></td>
<td scope="col" style="text-align:right;"><?php echo date("Y-m-d", strtotime($next['wr_datetime'])) ?></td>
</tr>
</table>
</div>
<!-- } 이전글 다음글 끝 -->
[/code]