게시판을 불러오려고 하는데요 정보
게시판을 불러오려고 하는데요본문

그림 1
홈페이지를 위와 같이 만들고 게시판을 그림1과 같이 가운데 불러 오니까 그림2와 같이 되는데 어떻게 코딩하면 되는지 가르쳐 주시기 바랍니다.

head.php 소스
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
include_once("$g4[path]/head.sub.php");
include_once("$g4[path]/lib/outlogin.lib.php");
include_once("$g4[path]/lib/poll.lib.php");
include_once("$g4[path]/lib/visit.lib.php");
include_once("$g4[path]/lib/connect.lib.php");
include_once("$g4[path]/lib/popular.lib.php");
include_once("$g4[path]/lib/outlogin.lib.php");
include_once("$g4[path]/lib/poll.lib.php");
include_once("$g4[path]/lib/visit.lib.php");
include_once("$g4[path]/lib/connect.lib.php");
include_once("$g4[path]/lib/popular.lib.php");
//print_r2(get_defined_constants());
// 사용자 화면 상단과 좌측을 담당하는 페이지입니다.
// 상단, 좌측 화면을 꾸미려면 이 파일을 수정합니다.
// 상단, 좌측 화면을 꾸미려면 이 파일을 수정합니다.
$table_width = 1004;
?>
<html>
<head>
<title>무제 문서</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
</head>
?>
<html>
<head>
<title>무제 문서</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
</head>
<body>
<table width="457" height="238" border="0" cellpadding="0" cellspacing="0">
<tr bgcolor="#FFFF66">
<td height="54" colspan="3"><div align="center">top메뉴</div></td>
</tr>
<tr>
<td width="109" height="121" bgcolor="#FFCCCC"><div align="center">왼쪽메뉴</div>
<table width="457" height="238" border="0" cellpadding="0" cellspacing="0">
<tr bgcolor="#FFFF66">
<td height="54" colspan="3"><div align="center">top메뉴</div></td>
</tr>
<tr>
<td width="109" height="121" bgcolor="#FFCCCC"><div align="center">왼쪽메뉴</div>
index.pjp 소스
<?
include_once("./_common.php");
include_once("$g4[path]/lib/latest.lib.php");
include_once("./_common.php");
include_once("$g4[path]/lib/latest.lib.php");
$g4['title'] = "";
include_once("./_head.php");
?>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
</td>
<td width="241"><div align="center">
<p>최근게시물 및</p>
<p>게시판 불러올 자리</p>
</div>
<?
include_once("./_tail.php");
?>
include_once("./_head.php");
?>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
</td>
<td width="241"><div align="center">
<p>최근게시물 및</p>
<p>게시판 불러올 자리</p>
</div>
<?
include_once("./_tail.php");
?>
tail.php소스
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
// 사용자 화면 우측과 하단을 담당하는 페이지입니다.
// 우측, 하단 화면을 꾸미려면 이 파일을 수정합니다.
?>
</td>
<td width="107" bgcolor="#33FFFF"><div align="center">오른쪽메뉴</div></td>
</tr>
<tr bgcolor="#66FF66">
<td height="63" colspan="3">
<div align="center">하단 카피파이트</div></td>
</tr>
</table>
</body>
</html>
// 우측, 하단 화면을 꾸미려면 이 파일을 수정합니다.
?>
</td>
<td width="107" bgcolor="#33FFFF"><div align="center">오른쪽메뉴</div></td>
</tr>
<tr bgcolor="#66FF66">
<td height="63" colspan="3">
<div align="center">하단 카피파이트</div></td>
</tr>
</table>
</body>
</html>
노프레임 만들기 강좌에는 위와 같이 만드는 것은 없어서 이렇게 질문드립니다.
댓글 전체
head.php
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
include_once("$g4[path]/head.sub.php");
include_once("$g4[path]/lib/outlogin.lib.php");
include_once("$g4[path]/lib/poll.lib.php");
include_once("$g4[path]/lib/visit.lib.php");
include_once("$g4[path]/lib/connect.lib.php");
include_once("$g4[path]/lib/popular.lib.php");
//print_r2(get_defined_constants());
// 사용자 화면 상단과 좌측을 담당하는 페이지입니다.
// 상단, 좌측 화면을 꾸미려면 이 파일을 수정합니다.
$table_width = 1004;
?>
<table width="100%" height="100%" cellpadding="0" cellspacing="0" border="1">
<tr>
<td align="center" height="100" colspan="3">top메뉴</td>
</tr>
<tr>
<td align="center" width="150">왼쪽메뉴</td>
<td align="center">
tail.php소스
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
// 사용자 화면 우측과 하단을 담당하는 페이지입니다.
// 우측, 하단 화면을 꾸미려면 이 파일을 수정합니다.
?>
</td>
<td align="center" width="150">오른쪽메뉴</td>
</tr>
<tr>
<td align="center" height="100" colspan="3">하단 카피라이트</td>
</tr>
</table>
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
include_once("$g4[path]/head.sub.php");
include_once("$g4[path]/lib/outlogin.lib.php");
include_once("$g4[path]/lib/poll.lib.php");
include_once("$g4[path]/lib/visit.lib.php");
include_once("$g4[path]/lib/connect.lib.php");
include_once("$g4[path]/lib/popular.lib.php");
//print_r2(get_defined_constants());
// 사용자 화면 상단과 좌측을 담당하는 페이지입니다.
// 상단, 좌측 화면을 꾸미려면 이 파일을 수정합니다.
$table_width = 1004;
?>
<table width="100%" height="100%" cellpadding="0" cellspacing="0" border="1">
<tr>
<td align="center" height="100" colspan="3">top메뉴</td>
</tr>
<tr>
<td align="center" width="150">왼쪽메뉴</td>
<td align="center">
tail.php소스
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
// 사용자 화면 우측과 하단을 담당하는 페이지입니다.
// 우측, 하단 화면을 꾸미려면 이 파일을 수정합니다.
?>
</td>
<td align="center" width="150">오른쪽메뉴</td>
</tr>
<tr>
<td align="center" height="100" colspan="3">하단 카피라이트</td>
</tr>
</table>
아주 잘 됩니다. 감사합니다.
좋은 하루 되세요
다른파일 다 그냥 나두시고요 tail.php 코드를 보세요.
http://fla001.cafe79.net/gnu/
--------------------------------------------------
<br>
<div style='height:10px;'></div>
<!-- 카피라이트 시작 -->
<div style='float:left;'>
<table width="100%" border="0" cellspacing="0" cellpadding="0" valign=top>
<tr>
<td valign="top" background="<?=$g4['path']?>/img/copyright.gif"><a href="#g4_head"><img src="<?=$g4['path']?>/img/icon.gif" width="15" height="12" border="0"></a><font color="#848484">Copyright ⓒ your-domain. All rights reserved.</font></td>
</tr>
</table>
</div>
<!-- 카피라이트 끝 -->
</td>
<td width="<?=$tail_width?>" valign=top cellpadding=0 cellspacing=5>
=================================
</td>
</tr>
<tr>
<td valign="top" colspan=4 >
</td>
</tr>
</table>
<?
include_once("$g4[path]/tail.sub.php");
?>
http://fla001.cafe79.net/gnu/
--------------------------------------------------
<br>
<div style='height:10px;'></div>
<!-- 카피라이트 시작 -->
<div style='float:left;'>
<table width="100%" border="0" cellspacing="0" cellpadding="0" valign=top>
<tr>
<td valign="top" background="<?=$g4['path']?>/img/copyright.gif"><a href="#g4_head"><img src="<?=$g4['path']?>/img/icon.gif" width="15" height="12" border="0"></a><font color="#848484">Copyright ⓒ your-domain. All rights reserved.</font></td>
</tr>
</table>
</div>
<!-- 카피라이트 끝 -->
</td>
<td width="<?=$tail_width?>" valign=top cellpadding=0 cellspacing=5>
=================================
</td>
</tr>
<tr>
<td valign="top" colspan=4 >
</td>
</tr>
</table>
<?
include_once("$g4[path]/tail.sub.php");
?>