인덱스 페이지 만드는방법좀 알려주세요. 정보
인덱스 페이지 만드는방법좀 알려주세요.
본문
전체게시물 출력이라던지..
최근스킨의 폭이라던지..
초보라서 최근게시물의 게시판번호 수정밖에 모르겠어요 ;;
책이든..강좌링크든..좋은니 도움이 될만한곳 추천좀 해주세요,
현재 인덱스 소스입니다.
<?
include_once("./_common.php");
include_once("$g4[path]/lib/latest.lib.php");
$g4['title'] = "";
include_once("./_head.php");
?>
<?
include_once("$g4[path]/lib/popup.lib.php");
echo popup("","popup");
?>
<!-- 메인화면 최신글 시작 -->
<table width="100%" cellpadding=0 cellspacing=0>
<tr>
<td valign=top>
<?
include_once("$g4[path]/lib/latest.group.lib.php");
// 최신글
$sql = " select * from $g4[group_table] order by gr_order_search, gr_id ";
$result = sql_query($sql);
$col_width = 100 / 2 . "%"; // 2개씩 채워서 넣기 위해서
$ja = 0;
echo "<table width='100%'><tr valign=top>";
// 전체 최근글 출력
// function latest_group($skin_dir="", $gr_id="", $rows=10, $subject_len=40, $content_len="", $skin_title="", $skin_title_link="")
echo "<td width='" . $col_width ."' valign=top>";
echo latest_group("simple", "", 12, 40, "", "전체최근글", "$g4[bbs_path]/new.php");
$ja++;
echo "</td>";
// 최근에 답글이나 코멘트가 달린 글
// function latest_group($skin_dir="", $gr_id="", $rows=10, $subject_len=40, $content_len="", $skin_title="", $skin_title_link="")
echo "<td width='" . $col_width ."' valign=top>";
echo latest_group("simple", "", 12, 40, "", "전체 내글의반응", "$g4[bbs_path]/new.php","my_datetime");
$ja++;
echo "</td>";
for ($i=0; $row=sql_fetch_array($result); $i++) {
// 이 함수가 바로 최신글을 추출하는 역할을 합니다.
// 스킨은 입력하지 않을 경우 관리자 > 환경설정의 최신글 스킨경로를 기본 스킨으로 합니다.
// 사용방법
// latest(스킨, 게시판아이디, 출력라인, 글자수);
if ($ja == 2) { // 줄바꿈
echo "</tr><tr valign=top>";
$ja = 0;
}
echo "<td width='" . $col_width ."' valign=top>";
echo latest_group("simple", $row['gr_id'], 12, 40);
$ja++;
echo "</td>";
}
echo "</tr>";
// 최근글
echo "</tr><tr valign=top>";
echo "<td>" . latest('simple', notice) . "</td>";
echo "<td>" . latest('simple', kin) . "</td>";
echo "</td>";
echo "</table>";
?>
</td>
</tr>
</table>
<!-- 메인화면 최신글 끝 -->
<table width="640" border="0" cellspacing="0" cellpadding="0" bgcolor="#CCFFCC">
<tr>
<td><script>doc_write(flash_movie('/swf/talkopen700_250_t.swf', 'latest', 640, 250, 'transparent'))</script>
</td>
</tr>
</table>
<?
include_once("./_tail.php");
?>