2012-10-23 33 views
-3

可能重複:
Headers already sent by PHP腓不能修改標題信息

我知道這是一個非常普遍的問題,我有很多用Google搜索這一點,但仍然沒有成功。我收到此錯誤

Warning: Cannot modify header information - headers already sent by (output started at G:\xampp\htdocs\bidding_site\inc\header.php:88) in G:\xampp\htdocs\bidding_site\inc\add_project.php on line 8 

我已經檢查了存在header()之前沒有空格。下面是我的add_project.php

<?php 

if(isset($_SESSION['user'])) { 
echo "hello world"; 
} 
else { 

header('location:../index.php'); 
} 
?> 
+1

此外,問題是在'header.php'的#88行上 – Phil

回答

0

錯誤消息已經解釋發生了什麼事的代碼; inc\header.php在第88行發送了一些輸出(例如回顯,打印或PHP標籤外的東西)。

這就是說,這是一個非常普遍的問題,這裏還有其他答案,因此Google和Google會顯示大量答案,所以這應該關閉。