|
|
|
14년 전
|
조회 1,002
|
|
|
|
14년 전
|
조회 1,528
|
|
|
|
14년 전
|
조회 1,678
|
|
|
|
14년 전
|
조회 1,282
|
|
|
|
14년 전
|
조회 1,624
|
|
|
|
14년 전
|
조회 1,578
|
|
|
|
14년 전
|
조회 1,323
|
|
|
|
14년 전
|
조회 1,439
|
|
|
|
14년 전
|
조회 1,643
|
|
|
|
14년 전
|
조회 1,663
|
|
|
|
14년 전
|
조회 1,616
|
|
|
|
14년 전
|
조회 2,657
|
|
|
|
14년 전
|
조회 1,558
|
|
|
|
14년 전
|
조회 1,308
|
|
|
|
14년 전
|
조회 1,233
|
|
|
|
14년 전
|
조회 1,502
|
|
|
|
14년 전
|
조회 1,334
|
|
|
|
14년 전
|
조회 1,595
|
|
|
|
14년 전
|
조회 1,018
|
|
|
|
14년 전
|
조회 1,630
|
댓글 2개
index.php 에서 head.php 불러오는지 체크하고,
head.php 에서 common.php 불러오는지 체크
$g4_path="./그누보드4";
////////////////////////////////////
그리고 아래와 같이 하면 안됩니다
<html>
<head>
<title>main</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
</head>
<?
include_once("./_common.php");
include_once("$g4[path]/lib/latest.lib.php");
?>
----------------------------------수정 후
<?
include_once("./_common.php");
include_once("$g4[path]/lib/latest.lib.php");
?>
<html>
<head>
<title>main</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
</head>