write.skin/btn_save.gif글쓰기버튼 누른 후 원하는 게시판으로 이동
write.skin/btn_save.gif버튼을 눌러 글쓴 후 원하는 게시판으로 이동하게 링크걸려면 아래코드를 어떻게 수정사용해야 할까요?
이동할 게시판 예) http://1234.com/bbs/write.php?bo_table=biz
<tr>
<td width="100%" align="center" valign="top">
<input type=image id="btn_submit" src="<?=$board_skin_path?>/img/btn_save.gif" border=0 accesskey='s'>
<a href="./board.php?bo_table=<?=$bo_table?>"><img id="btn_list" src="<?=$board_skin_path?>/img/btn_list.gif" border=0></a></td>
</tr>
이동할 게시판 예) http://1234.com/bbs/write.php?bo_table=biz
<tr>
<td width="100%" align="center" valign="top">
<input type=image id="btn_submit" src="<?=$board_skin_path?>/img/btn_save.gif" border=0 accesskey='s'>
<a href="./board.php?bo_table=<?=$bo_table?>"><img id="btn_list" src="<?=$board_skin_path?>/img/btn_list.gif" border=0></a></td>
</tr>
|
댓글을 작성하시려면 로그인이 필요합니다.
로그인
댓글 3개
내용은 이렇게 하세요.
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
goto_url("http://1234.com/bbs/write.php?bo_table=biz");
?>