메인에서 최글글 추출할려고 하는데.. 채택완료
다조아해
10년 전
조회 3,511
일반 페이지 하나 만들어서 최근글 추출 할려고 한다면..
여기에 어떤 소스를 넣어 주어야 하나요?
</P>
<P><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<A href="<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank" rel="noopener noreferrer">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>"><a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank" rel="noopener noreferrer">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a></A>">
<html xmlns="<A href="<a href="http://www.w3.org/1999/xhtml" target="_blank" rel="noopener noreferrer">http://www.w3.org/1999/xhtml</a>"><a href="http://www.w3.org/1999/xhtml" target="_blank" rel="noopener noreferrer">http://www.w3.org/1999/xhtml</a></A>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>무제 문서</title>
</head></P>
<P><body>
<table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><?php echo latest("basic", '1', 5, 70); ?></td>
</tr>
</table>
</body>
</html></P>
<P>
댓글을 작성하려면 로그인이 필요합니다.
답변 2개
채택된 답변
+20 포인트
10년 전
일반 페이지 만들 때 위에서 처럼 하지 마시고
index.php 화일 복사해서 사용하시면 편합니다...
아래 진하게 한 부분은 고정하시고
원하는 내용을 그 사이에 넣으세요...
<?php
include_once('./_common.php');
include_once('./_head.php');
?>
원하는 내용....
<?php echo latest("basic", '1', 5, 70); ?>
<?php
include_once('./_tail.php');
?>
로그인 후 평가할 수 있습니다
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인
bbs 폴더안에 아래 파일을 만들어서 페이지 여니 아무것도 보이지가 않네요.
<?php echo latest("basic", '1', 5, 70); ?>
1번 게시판을 불러오는건데... ㅠ.ㅠ
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
include_once('./_common.php');
include_once(G5_LIB_PATH.'/latest.lib.php');
include_once(G5_LIB_PATH.'/outlogin.lib.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> new document </title>
<meta name="generator" content="editplus" />
<meta name="author" content="" />
<meta name="keywords" content="" />
<meta name="description" content="" />
</head>
<body>
<?php echo latest("basic", '1', 5, 70); ?>안녕하세요
</body>
</html>