게시판적용시
본문
안녕하세요.
index페이지를디자인하고, head파일를 include시키면,
Warning: Cannot modify header information - headers already sent by (output started at /home/gs/public_html/index.html:5) in /home/gs/public_html/bbs/lib/common.lib.php on line 135
에러 메서지가 나옴니다.
그래서, 135라인을 주석 처리하면 에ㅔ러 메세지가나오지 않는데요.
주석처리해도 되는지 안니면 다른 방법이 있는 지요.
부탁 드립니자.
답변 2
index.html 의 젤 상단은
<?php
include_once('./_common.php');
로 되어야 합니다 혹시 include_once('./_common.php'); 위에 다른 내용이 있는지 확인해보고 다른것이 있다면 그걸 include_once('./_common.php'); 밑에 넣어두세요.
index.html 이 파일 맨상단에 아래의 소스를 추가해 보세요..
<?php
ob_start();
?>
답변을 작성하시기 전에 로그인 해주세요.