경로 및 latest 인클루드 문제
본문
기존 사이트가 루트 디렉토리 안에 index.php가 있고 같은 경로에 그누보드폴더(gnuboard5)가 있는 구조입니다.
/index.php
/gnuboard5/
이렇게 있는데 index.php 에 공지사항 latest 를 가져오려면 어떻게 해야하나요?
답변 2
고민할 것도 없습니다
그냥 하위 폴더의 latest.lib.php를 불러오면 됩니다
<?php
include "./gnuboard5/common.php";
include "./gnuboard5/lib/latest.lib.php";
echo latest('basic', 'free', 4, 23);
다음 코드가 도움이 될지 모르겠습니다.
<?php
include __DIR__ . DIRECTORY_SEPARATOR . 'gnuboard5' . DIRECTORY_SEPARATOR . 'common.php';
include_once(G5_LIB_PATH.'/latest.lib.php');
//echo latest('pic_list', 'notice', 4, 23);
//echo latest('notice', 'notice', 4, 23);
echo latest('basic', 'notice', 4, 23);
?>
답변을 작성하시기 전에 로그인 해주세요.