게시판 상단내용을 일반 페이지에서 보이기
본문
게시판 상단내용을 공지로 사용하고자, 게시판 외인 일반 페이지에서도 출력시키고 싶어요.
아래 내용을 그냥 헤드에 넣으니 안뜨네요.
어떤식으로 적용을 하면 되는지요. 고수님들 잘 부탁드립니다..ㅜㅜ
<?php
if (G5_IS_MOBILE) {
// 모바일의 경우 설정을 따르지 않는다.
include_once(G5_BBS_PATH.'/_head.php');
echo stripslashes($board['bo_mobile_content_head']);
} else {
@include ($board['bo_include_head']);
echo stripslashes($board['bo_content_head']);
}
?>
답변 1
<?php
$board = sql_fetch(" select * from {$g5['board_table']} where bo_table='게시판ID' ");
if (G5_IS_MOBILE) {
echo stripslashes($board['bo_mobile_content_head']);
} else {
echo stripslashes($board['bo_content_head']);
}
?>
답변을 작성하시기 전에 로그인 해주세요.