링크 클릭시 최신글로 이동
특정게시판의 최신글로 이동하는 스크립트파일
==================================================================
본문中....
<a href="new.php?bo_table=test">[test 게시판의 최신글로 이동]</a>
본문中....
==================================================================
[new.php]
<?
include_once("./_common.php");
// 파라메터 체크
if ( !$bo_table ) exit;
// 테이블 최신글 번호
$tmp_write_table = $g4['write_prefix'] . $bo_table;
$last_wr_id = sql_fetch("select wr_id from ".$tmp_write_table." where wr_is_comment = 0 order by wr_num limit 0, 1");
// 이동
goto_url($g4['bbs_path']."/board.php?bo_table=".$bo_table."&wr_id=".$last_wr_id['wr_id']);
?>
==================================================================
본문中....
<a href="new.php?bo_table=test">[test 게시판의 최신글로 이동]</a>
본문中....
==================================================================
[new.php]
<?
include_once("./_common.php");
// 파라메터 체크
if ( !$bo_table ) exit;
// 테이블 최신글 번호
$tmp_write_table = $g4['write_prefix'] . $bo_table;
$last_wr_id = sql_fetch("select wr_id from ".$tmp_write_table." where wr_is_comment = 0 order by wr_num limit 0, 1");
// 이동
goto_url($g4['bbs_path']."/board.php?bo_table=".$bo_table."&wr_id=".$last_wr_id['wr_id']);
?>
|
댓글을 작성하시려면 로그인이 필요합니다.
로그인
댓글 7개
이 방법 연구 하고 있었는데 한번 적용해 보아야 겠어요 ~
사실 여태껏 특정 게시판 최신글 일일이 링크 걸어 주었는데 적용 하니 편하네용^^
사실은 생각도 못했는데, 질답게시판에 10,000점에 혹해서~
후딱 만들어 봤어욤~ㅋㅋ
대충 검색해봐도 같은건 없으니 중복은 아닐듯!!