vote up 2 vote down star
include('header.php');

$name = $_POST['name'];
$score = $_POST['score'];
$dept = $_POST['dept'];

$MyDB->prep("INSERT INTO demo (`id`,`name`,`score`,`dept`, `date`) VALUES ('','$name','$score','$dept','$date')");
// Bind a value to our :id hook
// Produces: SELECT * FROM demo_table WHERE id = '23'
$MyDB->bind(':date', $date);
// Run the query
$MyDB->run();

header('Location:index.php');
    exit;

The above code keeps giving me an issue with the redirect. The error is:

Warning: Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/testygubbins/OO/test/header.php:15) in /Applications/MAMP/htdocs/testygubbins/OO/test/form.php on line 16.

I am totally flummoxed by this. Does anyone know what i should be doing to make it work? Cheers

EDIT

header.php code:

<?php
include('class.user.php');
include('class.Connection.php');

	$date = date('Y-m-j');

?>
<html>
<head>
	<link rel=StyleSheet href="css/style.css" type="text/css" media=screen>
	<title>Test</title>
</head>
<body>
<div id="page">
flag

What is header.php? – m3rLinEz Jan 8 '09 at 10:57
You can't redirect if you have already sent HTML output. Either use output buffering or replace 'include "header.php"' with the PHP block in header.php. – monzee Jan 8 '09 at 15:46

9 Answers

vote up 7 vote down check

Look carefully at your includes - perhaps you have a blank line after a closing ?> ?

This will cause some literal whitespace to be sent as output, preventing you from making subsequent header calls.

Note that it is legal to leave the close ?> off the include file, which is a useful idiom for avoiding this problem.

(EDIT: looking at your header, you need to avoid doing any HTML output if you want to output headers, or use output buffering to capture it).

Finally, as the PHP manual page for header points out, you should really use full URLs to redirect:

Note: HTTP/1.1 requires an absolute URI as argument to Location: including the scheme, hostname and absolute path, but some clients accept relative URIs. You can usually use $_SERVER['HTTP_HOST'], $_SERVER['PHP_SELF'] and dirname() to make an absolute URI from a relative one yourself:

link|flag
Cheers dude, whitespace it was. Big fun! – Drew Jan 8 '09 at 11:05
1  
It's not just the whitespace, it's the whole HTML output after the PHP block that's causing the error. – monzee Jan 8 '09 at 15:42
The edit of this post shows the point, the include has html code in it, that is send out immediatly to the client. – BeowulfOF Jun 20 at 11:15
vote up 1 vote down

Look at /Applications/MAMP/htdocs/testygubbins/OO/test/header.php line 15.

At that position, it makes some output. Fix it. :)

link|flag
line 15 is blank – Drew Jan 8 '09 at 10:59
no matter if it's blank -- a newline is output too. – gnud Jan 8 '09 at 11:06
vote up -3 vote down

try

header("Location: index.php")
link|flag
Alas, still nothing – Drew Jan 8 '09 at 11:01
vote up 1 vote down

If I understand correctly, something has already sent out from header.php (maybe some HTML) so the headers have been set. You may need to recheck your header.php file for any part that may output HTML or spaces before your first

EDIT: I am now sure that it is caused from header.php since you have those HTML output. You can fix this by remove the "include('header.php');" line and copy the following code to your file instead.

include('class.user.php');
include('class.Connection.php');

        $date = date('Y-m-j');
link|flag
Did take the html out as well. Thanks! :) – Drew Jan 8 '09 at 11:06
vote up 1 vote down

You may have some "plain text" somewhere in php files that is interpreted as script output. It may be even a newline before or after the php script tag specifier (less-than + question mark + "php").

Besides, if I remember correctly, according to http specification, the "Location" header accepts only full URLs, not relative locations. Have that in mind too.

link|flag
vote up 0 vote down

Don't include header.php. You should not output HTML when you are going to redirect.

Make a new file, eg. "pre.php". Put this in it:

<?php
include('class.user.php');
include('class.Connection.php');
?>

Then in header.php, include that, in stead of including the two other files. In form.php, include pre.php in stead of header.php.

link|flag
vote up 1 vote down

Alternatively, not to think about a newline or space somewhere in the file, you can buffer the output. Basically, you call ob_start() at the very beginning of the file and ob_end_flush() at the end. You can find more details at php.net ob-start function description.

Edit: If you use buffering, you can output HTML before and after header() function - buffering will then ignore the output and return only the redirection header.

link|flag
vote up -2 vote down

though i dont know you got the answer or not but i think there is an error in your pageprocess:

hey you have already sent the header by:

header.php

<head>
    <link rel=StyleSheet href="css/style.css" type="text/css" media=screen>
    <title>Test</title>

see header can only be sent once from a page not twice !..

just remove this from the header.php and it will be ok.. as i dont think you would even need the css or any title on a page that has a header location as its done in microseconds., and if you want a redirect than use

<meta http-equiv = 'Refresh' Content = '2; URL =index.php'>
link|flag
1  
HTTP headers are an entirely different thing than the HTML <head> tag. They have nothing to do with each other. The proper answer was already given above: His include produced output, thereby making it impossible to send a http header later. – Martijn Heemels Jun 20 at 11:07
vote up 0 vote down

Your include produces output, thereby making it impossible to send a http header later. Two option:

  1. Move the output somewhere after the include.
  2. Use output buffering, i.e. at the very start of your script, put ob_start(), and at the end, put ob_flush(). This enables PHP to first wait for all the output to be gathered, determine in what order to render it, and outputs it.

I would recommend you learn the second option, as it makes you far more flexible.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.