답답해~ 최근게시물~!!!! 정보
질문 답답해~ 최근게시물~!!!!본문
아아아.. 제로보드랑 똑같은줄 알았는데.. 안된당...ㅜㅜ
제 홈피 인덱스.htm 에 최근게시물을 넣을껀데여..
제로보드 같은경우는 <html> 시작하기 전에 아래 와 같은 소스를 넣어준뒤..
<?
$_zb_url = "http://계정/zb41pl6/";
$_zb_path = "/home/계정아이디/public_html/zb41pl6/";
include $_zb_path."outlogin.php";
?>
최근게시물 보일곳에 테이블 짜서
<? print_bbs("notice","공지","notice", 5, 50)?> 요런거 넣었잖아여..
근데 여기는 어케해여.???????
---------------------------------
index.php 에 나와 있다는데 거기는 소스만 있고,,, 직접 그 화일 불러들이니까..
관리자 화면에 붙은 최근게시물이고... ㅜㅜ
어떤분은 <?=latest(basic2, 테스트보드, 5, 20);?> 이것만 넣으면 된다는데..
일반 문서에 저거만 달랑 넣는다고 되지도 않을터인데..
아.. 몇시간째 이것땜에.. 머리 아퍼 죽을지경....
제발.~~~
제 홈피 인덱스.htm 에 최근게시물을 넣을껀데여..
제로보드 같은경우는 <html> 시작하기 전에 아래 와 같은 소스를 넣어준뒤..
<?
$_zb_url = "http://계정/zb41pl6/";
$_zb_path = "/home/계정아이디/public_html/zb41pl6/";
include $_zb_path."outlogin.php";
?>
최근게시물 보일곳에 테이블 짜서
<? print_bbs("notice","공지","notice", 5, 50)?> 요런거 넣었잖아여..
근데 여기는 어케해여.???????
---------------------------------
index.php 에 나와 있다는데 거기는 소스만 있고,,, 직접 그 화일 불러들이니까..
관리자 화면에 붙은 최근게시물이고... ㅜㅜ
어떤분은 <?=latest(basic2, 테스트보드, 5, 20);?> 이것만 넣으면 된다는데..
일반 문서에 저거만 달랑 넣는다고 되지도 않을터인데..
아.. 몇시간째 이것땜에.. 머리 아퍼 죽을지경....
제발.~~~
댓글 전체
일단 아래<? 표로 시작 해서 ?>로 끝나는 곳까지 몽땅 복사해서 index.php 파일에 넣으세요
그리고 게시판 을 관리자화면에서 4개를 만드세요.. (아래소스는 4개의 게시판이 만들어져있음)
bbs, tip, notice, gallery --> 요렇게 4개 입니다..
일단 무조건 해보세요...
<?
// 상대 경로
$g4_path = ".";
include_once("$g4_path/common.php");
include_once("$g4[path]/lib/latest.lib.php");
$g4[title] = "";
include_once("$g4[path]/head.php");
?>
<!-- 메인화면 최신글 시작 -->
<table cellpadding="0" cellspacing="0" width="100%" align="center">
<tr>
<td width="10"> </td>
<td valign="top" width="274">
<?=latest("basic", bbs, 5, 35);?>
</td>
<td width="10"> </td>
<td valign="top" width="274">
<?=latest("basic", notice, 5, 30);?>
</td>
<td width="10"> </td>
</tr>
<tr>
<td width="10"> </td>
<td valign="top" width="274">
<?=latest("basic", gallery, 5, 35);?>
</td>
<td width="10"> </td>
<td valign="top" width="274">
<?=latest("basic", tip, 5, 35);?>
</td>
<td width="10"> </td>
</tr>
</table>
<!-- 메인화면 최신글 끝 -->
<?
include_once("$g4[path]/tail.php");
?>
그리고 게시판 을 관리자화면에서 4개를 만드세요.. (아래소스는 4개의 게시판이 만들어져있음)
bbs, tip, notice, gallery --> 요렇게 4개 입니다..
일단 무조건 해보세요...
<?
// 상대 경로
$g4_path = ".";
include_once("$g4_path/common.php");
include_once("$g4[path]/lib/latest.lib.php");
$g4[title] = "";
include_once("$g4[path]/head.php");
?>
<!-- 메인화면 최신글 시작 -->
<table cellpadding="0" cellspacing="0" width="100%" align="center">
<tr>
<td width="10"> </td>
<td valign="top" width="274">
<?=latest("basic", bbs, 5, 35);?>
</td>
<td width="10"> </td>
<td valign="top" width="274">
<?=latest("basic", notice, 5, 30);?>
</td>
<td width="10"> </td>
</tr>
<tr>
<td width="10"> </td>
<td valign="top" width="274">
<?=latest("basic", gallery, 5, 35);?>
</td>
<td width="10"> </td>
<td valign="top" width="274">
<?=latest("basic", tip, 5, 35);?>
</td>
<td width="10"> </td>
</tr>
</table>
<!-- 메인화면 최신글 끝 -->
<?
include_once("$g4[path]/tail.php");
?>
나도 마찬가지.... ㅠㅠ