게시판 인클루드 부분 질문입니다. 정보
게시판 인클루드 부분 질문입니다.
본문
매뉴얼도 읽어보고,질답게시판에서 검색을 해봐도
해결이 되지 않아 질문드립니다.ㅜㅠ(잘 이해가 안되요.ㅠ)
기본 빌더를 받아서 메인으로 불러오는 그룹 폴더안 php에
--------------------------------------------------
<?
include_once("./_common.php");
?>
<!-- 메인화면 최신글 시작 -->
<table width="100%" cellpadding=0 cellspacing=0>
<tr>
<td valign="top" align="center">
<?
include
$bo_table = 'sample';
include('.gnu4/bbs/board.php?bo_table=01');
?>
</td>
</tr>
</table>
--------------------------------------------------
이렇게 넣었더니
에러 메세지가 ↓
--------------------------------------------------
Warning: include(sample) [function.include]: failed to open stream: No such file or directory in /web/home/doda/html/gnu4/group/01.php on line 11
Warning: include() [function.include]: Failed opening 'sample' for inclusion (include_path='.:/usr/share/pear') in /web/home/doda/html/gnu4/group/01.php on line 11
Warning: include(.gnu4/bbs/board.php?bo_table=01) [function.include]: failed to open stream: No such file or directory in /web/home/doda/html/gnu4/group/01.php on line 12
Warning: include() [function.include]: Failed opening '.gnu4/bbs/board.php?bo_table=01' for inclusion (include_path='.:/usr/share/pear') in /web/home/doda/html/gnu4/group/01.php on line 12
--------------------------------------------------
이렇게 뜨더라구요.
검색 후 알게된건 디텍토리에 없다고 하는거 같긴 한데.
그럼 gnu4 폴더안 bbs 라는 폴더에 제가 생성한 게시판이 있어야 하는건지..?;;;
11번 줄과 12번 줄이 뭔가 틀렸다고 하는거 같긴 한데...;그누보드 입문을 막 시작후
직접 부딪혀 보자하고 공개빌더를 수정 중 이렇게 처음부터 막히네요.ㅜㅠ
혼자 해결해 보려 검색을 무수히 했지만 해결이 안되어 글 올립니다.ㅜ
조언 부탁드립니다.ㅜㅠ 굽신굽신.
해결이 되지 않아 질문드립니다.ㅜㅠ(잘 이해가 안되요.ㅠ)
기본 빌더를 받아서 메인으로 불러오는 그룹 폴더안 php에
--------------------------------------------------
<?
include_once("./_common.php");
?>
<!-- 메인화면 최신글 시작 -->
<table width="100%" cellpadding=0 cellspacing=0>
<tr>
<td valign="top" align="center">
<?
include
$bo_table = 'sample';
include('.gnu4/bbs/board.php?bo_table=01');
?>
</td>
</tr>
</table>
--------------------------------------------------
이렇게 넣었더니
에러 메세지가 ↓
--------------------------------------------------
Warning: include(sample) [function.include]: failed to open stream: No such file or directory in /web/home/doda/html/gnu4/group/01.php on line 11
Warning: include() [function.include]: Failed opening 'sample' for inclusion (include_path='.:/usr/share/pear') in /web/home/doda/html/gnu4/group/01.php on line 11
Warning: include(.gnu4/bbs/board.php?bo_table=01) [function.include]: failed to open stream: No such file or directory in /web/home/doda/html/gnu4/group/01.php on line 12
Warning: include() [function.include]: Failed opening '.gnu4/bbs/board.php?bo_table=01' for inclusion (include_path='.:/usr/share/pear') in /web/home/doda/html/gnu4/group/01.php on line 12
--------------------------------------------------
이렇게 뜨더라구요.
검색 후 알게된건 디텍토리에 없다고 하는거 같긴 한데.
그럼 gnu4 폴더안 bbs 라는 폴더에 제가 생성한 게시판이 있어야 하는건지..?;;;
11번 줄과 12번 줄이 뭔가 틀렸다고 하는거 같긴 한데...;그누보드 입문을 막 시작후
직접 부딪혀 보자하고 공개빌더를 수정 중 이렇게 처음부터 막히네요.ㅜㅠ
혼자 해결해 보려 검색을 무수히 했지만 해결이 안되어 글 올립니다.ㅜ
조언 부탁드립니다.ㅜㅠ 굽신굽신.
댓글 전체
<? include <== 오류
$bo_table = 'sample';
include('.gnu4/bbs/board.php?bo_table=01'); <== 테이블명이 01 입니까 sample 입니까?
?>
를 아래처럼 바꿔보세요
<?
include_once('$g4[bbs]/board.php?bo_table=01');
?>
$bo_table = 'sample';
include('.gnu4/bbs/board.php?bo_table=01'); <== 테이블명이 01 입니까 sample 입니까?
?>
를 아래처럼 바꿔보세요
<?
include_once('$g4[bbs]/board.php?bo_table=01');
?>
ㅎㅎㅎ