최근게시물 보기 > 그누4 질문답변

그누4 질문답변

그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기
기존 게시물은 열람만 가능합니다.

최근게시물 보기 정보

최근게시물 보기

본문

왕초보인데요. 최근게시물 보기에서.
메뉴얼에 있는데로 했습니다.
아래는 제가 한 파일 내용그대로이구요.
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">
<html xmlns="
">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr" />
<title>Untitled Document</title>
</head>
<body>
<table width="1024" border="1">
  <tr>
    <td height="332" colspan="3">메인 이미지 </td>
  </tr>
  <tr>
    <td width="279" height="420">이미지</td>
   
 <td width="372">
<?include_once("./_common.php");
include_once("$g4[path]/lib/latest.lib.php"); // latest() 함수를 사용하여야 하므로 이 프로그램을 포함시킵니다.

echo latest("elpis_basic7", "notice", 5, 70); // basic 스킨으로 free 라는 게시판을 출력합니다.
?>
</td>
    <td width="351">이미지2</td>
  </tr>
  <tr>
    <td height="115" colspan="3">하단</td>
  </tr>
</table>
</body>
</html>
요거 그대로 했는데요.
게시물이 나오긴 나오는데.. 아래와 같은 에러문구가 계속해서 나옵니다.
어떻게 해야 할까요...
 
 
Warning: Cannot modify header information - headers already sent by (output started at /home/hosting_users/seonghunsteel/www/index.php:6) in /home/hosting_users/seonghunsteel/www/common.php on line 8
  • 복사

댓글 전체

common.php에 8라인에서 보낸 header를 주석처리하시던가 아니면
include_once("./_common.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>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr" />
<title>Untitled Document</title>
</head>
를 날리세요
© SIRSOFT
현재 페이지 제일 처음으로