Jump to content

header already sent, can't redirect


BrianM

Recommended Posts

<?php
function report_create() {
	echo("<form action=\"".$_SERVER['PHP_SELF']."?table=".$_GET['table']."&project_name=".$_GET['project_name']."&report=create\" method=\"post\">");
	echo("<b><font size=\"2px\" face=\"Verdana\">Create report: </font></b><input type=\"text\" name=\"report_\" /> <input type=\"submit\" name=\"report_create\" value=\"Create\" />");
	echo("</form>");
	}
if (isset($_POST['report_create'])) {
	mysql_connect('localhost', 'brian', '') or die(mysql_error());
	mysql_select_db('reports') or die(mysql_error());

	mysql_query("INSERT INTO `$table` (date, report) VALUES ('".date("m-d-y")."', '".$_POST['report_']."')");
}
?>

 

I want to be able to redirect to another page after that insert query is executed, but I can't use header() .. so is there any other way I can redirect after mysql_query is executed?

Link to comment
Share on other sites

You might check your query, in MySQL or phpMyAdmin, with the variables replaced to determine if the query syntax is perfect. If MySQL returns an error before the redirect, then that would cause the header() error you are experiencing because that error is output HTML.

Link to comment
Share on other sites

A common problem with header() saying that output has already started is that you have a space at the end of your PHP block, e.g. after ?> just highlight everything in a text editor and look for extra spaces as these count as output.

Link to comment
Share on other sites

Well I'm looking for an alternate because my script is telling me I've already sent header information so I can't use the header() function there.

 

Will what you provided work as an alternative?

 

well i did used it before... and it works! the idea of havin exit right away is so that the following code will not get executed, instead, the script will run right away.

 

you might check out also the others' suggestions and see which suits you best. :)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.