iframe으로 최근글 불러오기에서 문제가... 정보
질문 iframe으로 최근글 불러오기에서 문제가...본문
먼저 소스부터 ..
1) index.php::
<!-- 메인화면 최신글 시작 -->
<table width="100%" cellpadding=0 cellspacing=0><tr><td valign=top>
<?
include ("./index1.php"); }
?>
</td></tr></table>
<!-- 메인화면 최신글 끝 -->
<?
include_once("$g4[path]/tail.php");
?>
2) index1.php::
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<IFRAME SRC="./index2.php" width=724 height= 750 marginwidth= 0 marginheight= 0 frameborder="no" name="test"></IFRAME>
3) index2.php::
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
include_once("../lib/latest.lib.php");
?>
<!-- 메인화면 최신글 시작 -->
<table border="0" width="100%" id="noti" cellpadding=0 cellspacing=0>
<tr>
<td width="600" height="34%" valign="top">
<?=latest("latest",test", 5, 70) ?>
</td>
</tr>
</table>
<!-- 메인화면 최신글 끝 -->
이렇게 작성한후, 웹으로 돌리면,
익스에서는 아무것도 안보이고, 소스보기로 보면, 최근글 자리에
<IFRAME SRC="./index2.php" width=724 height= 750 marginwidth= 0 marginheight= 0 frameborder="no" name="test"></IFRAME>
요거만 달랑 나옵니다.
뭐가 잘못된걸까요?
도움바랍니다.
1) index.php::
<!-- 메인화면 최신글 시작 -->
<table width="100%" cellpadding=0 cellspacing=0><tr><td valign=top>
<?
include ("./index1.php"); }
?>
</td></tr></table>
<!-- 메인화면 최신글 끝 -->
<?
include_once("$g4[path]/tail.php");
?>
2) index1.php::
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<IFRAME SRC="./index2.php" width=724 height= 750 marginwidth= 0 marginheight= 0 frameborder="no" name="test"></IFRAME>
3) index2.php::
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
include_once("../lib/latest.lib.php");
?>
<!-- 메인화면 최신글 시작 -->
<table border="0" width="100%" id="noti" cellpadding=0 cellspacing=0>
<tr>
<td width="600" height="34%" valign="top">
<?=latest("latest",test", 5, 70) ?>
</td>
</tr>
</table>
<!-- 메인화면 최신글 끝 -->
이렇게 작성한후, 웹으로 돌리면,
익스에서는 아무것도 안보이고, 소스보기로 보면, 최근글 자리에
<IFRAME SRC="./index2.php" width=724 height= 750 marginwidth= 0 marginheight= 0 frameborder="no" name="test"></IFRAME>
요거만 달랑 나옵니다.
뭐가 잘못된걸까요?
도움바랍니다.
댓글 전체
7쟁이님 감사합니다.
include_once("$g4_path/common.php");
요걸 빼먹었군요,,,
include_once("$g4_path/common.php");
요걸 빼먹었군요,,,
<?
// 상대 경로
$g4_path = "."; // g4 사용을 위해서 반드시 추가
include_once("$g4_path/common.php");
include_once("$g4[path]/lib/latest.lib.php");
$g4[title] = "";
include_once("$g4[path]/head.php");
?>
<!--메인시작-->
<table width="606" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="310" height="158" align="left" valign="top">
<table cellpadding="0" cellspacing="0" width="300" height="56">
<tr>
<td width="300" height="34" align="left">
<p><img src="<?=$g4[path]?>/images/main/latest_ba02.gif" width="294" height="40" border="0"></p>
</td>
</tr>
<tr>
<td width="300" height="120">
<?=latest("g_latest", gallery, 4, 5);?>
</td>
</tr>
</table>
</td>
<td width="296" height="158" align="left">
<table width="278" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="278" height="34" valign="top">
<p><img src="<?=$g4[path]?>/images/main/latest_ba03.gif" width="287" height="40" border="0"></p>
</td>
</tr>
<tr>
<td width="278" height="120" valign="top">
<?=latest("basic", gallery, 4, 30);?>
</td>
</tr>
</table> </td>
</tr>
</table>
<!--메인 마무리-->
<?
include_once("$g4[path]/tail.php");
?>
잘은 모르지만 참고 하세요
// 상대 경로
$g4_path = "."; // g4 사용을 위해서 반드시 추가
include_once("$g4_path/common.php");
include_once("$g4[path]/lib/latest.lib.php");
$g4[title] = "";
include_once("$g4[path]/head.php");
?>
<!--메인시작-->
<table width="606" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="310" height="158" align="left" valign="top">
<table cellpadding="0" cellspacing="0" width="300" height="56">
<tr>
<td width="300" height="34" align="left">
<p><img src="<?=$g4[path]?>/images/main/latest_ba02.gif" width="294" height="40" border="0"></p>
</td>
</tr>
<tr>
<td width="300" height="120">
<?=latest("g_latest", gallery, 4, 5);?>
</td>
</tr>
</table>
</td>
<td width="296" height="158" align="left">
<table width="278" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="278" height="34" valign="top">
<p><img src="<?=$g4[path]?>/images/main/latest_ba03.gif" width="287" height="40" border="0"></p>
</td>
</tr>
<tr>
<td width="278" height="120" valign="top">
<?=latest("basic", gallery, 4, 30);?>
</td>
</tr>
</table> </td>
</tr>
</table>
<!--메인 마무리-->
<?
include_once("$g4[path]/tail.php");
?>
잘은 모르지만 참고 하세요
ㅎ 감사합니다.
근데 그거 고쳐도 같은 증상이네요?
근데 그거 고쳐도 같은 증상이네요?
<?=latest("latest",test", 5, 70) ?> 지포에서는 최신글방식이저런가부죠??
<?=latest ('latest' ,test, 5, 70); ?> <==이눔이아닌지...
<?=latest ('latest' ,test, 5, 70); ?> <==이눔이아닌지...