|
Posted by walterbyrd on 11/24/61 11:53
Another thing I forgot to mention. If I comment out the problem lines,
I do not get the error message about headers, i.e.:
{
echo("1" . "\n\n");
# setcookie("admin", $username, time()+18000);
echo("2" . "\n\n");
# header("Location: table_list1.php");
echo("3" . "\n\n");
exit;
}
Gives me this output:
1 2 3
Also, oddly enough, when this line is executed, it works fine. No error
messages:
header("Location: index.html");
And, again, this all works fine on my remote web-host, which runs about
the same version of php. My web-host runs Linux, and I am using
windows.
[Back to original message]
|