|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-04-19 10:14 UTC] showrun at yahoo dot com
[2022-04-26 07:26 UTC] giw42161 at uooos dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 09 11:00:01 2025 UTC |
When sending a header after including another file (if the other file does not write anything directly), you will get a header problem even though no headers were actually sent. The connect.php only connects to the database. Nothing else. CODE: <? if (include("include/connect.php")) {} $mysql_connection = mysql_connect($mysql_host,$mysql_user, $mysql_pass); $mysql_query = "SELECT * FROM densetsuFiles WHERE Id = '$id'"; $mysql_result = mysql_db_query($db_name, $mysql_query, $mysql_connection); $row = mysql_fetch_array($mysql_result); if ($row) { header("Location: http://www.domain.com/data/$row[Type]/$row[FileName]"); end; } else { $error = "File Not Found"; } ?> Warning: Cannot add header information - headers already sent by (output started at include/connect.php:8) in /usr/home/a01/html/densetsu/downloads.php on line 9