게시판상단에 오류요.. ㅠ_ㅠ
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번째줄!
|
댓글을 작성하시려면 로그인이 필요합니다.
로그인
댓글 2개
감사~