게시판상단에 오류요.. ㅠ_ㅠ 정보
게시판상단에 오류요.. ㅠ_ㅠ본문
Warning: Cannot modify header information - headers already sent by (output started at /home2/k2eng/public_html/lib/common.lib.php:1289) in /home2/k2eng/public_html/head.sub.php on line 32
Warning: Cannot modify header information - headers already sent by (output started at /home2/k2eng/public_html/lib/common.lib.php:1289) in /home2/k2eng/public_html/head.sub.php on line 34
Warning: Cannot modify header information - headers already sent by (output started at /home2/k2eng/public_html/lib/common.lib.php:1289) in /home2/k2eng/public_html/head.sub.php on line 35
Warning: Cannot modify header information - headers already sent by (output started at /home2/k2eng/public_html/lib/common.lib.php:1289) in /home2/k2eng/public_html/head.sub.php on line 36
Warning: Cannot modify header information - headers already sent by (output started at /home2/k2eng/public_html/lib/common.lib.php:1289) in /home2/k2eng/public_html/head.sub.php on line 37
Warning: Cannot modify header information - headers already sent by (output started at /home2/k2eng/public_html/lib/common.lib.php:1289) in /home2/k2eng/public_html/head.sub.php on line 38
Warning: Cannot modify header information - headers already sent by (output started at /home2/k2eng/public_html/lib/common.lib.php:1289) in /home2/k2eng/public_html/head.sub.php on line 34
Warning: Cannot modify header information - headers already sent by (output started at /home2/k2eng/public_html/lib/common.lib.php:1289) in /home2/k2eng/public_html/head.sub.php on line 35
Warning: Cannot modify header information - headers already sent by (output started at /home2/k2eng/public_html/lib/common.lib.php:1289) in /home2/k2eng/public_html/head.sub.php on line 36
Warning: Cannot modify header information - headers already sent by (output started at /home2/k2eng/public_html/lib/common.lib.php:1289) in /home2/k2eng/public_html/head.sub.php on line 37
Warning: Cannot modify header information - headers already sent by (output started at /home2/k2eng/public_html/lib/common.lib.php:1289) in /home2/k2eng/public_html/head.sub.php on line 38
작동은 되는데 상단에 저런 오류들이 둥둥..
common.lib.php를 보면1288줄까지 밖에 없어요..
// 테이블에서 INDEX(키) 사용여부 검사
function explain($sql)
{
if (preg_match("/^(select)/i", trim($sql))) {
$q = "explain $sql";
echo $q;
$row = sql_fetch($q);
if (!$row[key]) $row[key] = "NULL";
echo " <font color=blue>(type=$row[type] , key=$row[key])</font>";
}
}
?> <- 1288번째줄!
function explain($sql)
{
if (preg_match("/^(select)/i", trim($sql))) {
$q = "explain $sql";
echo $q;
$row = sql_fetch($q);
if (!$row[key]) $row[key] = "NULL";
echo " <font color=blue>(type=$row[type] , key=$row[key])</font>";
}
}
?> <- 1288번째줄!

댓글 전체

head.sub.php 파일이 include 되기전에 공백이나 여타 다른 출력이 있기때문에 나타나는 에러입니다.
똑같은 파일 다시 업로드 하니 이상하게 오류 사라져서 해결되버렸어요 ㅎ
감사~
감사~