Howdy,
I am having trouble with "headers allready sent". Basically I have built a page (admit it was in dreamwear) which updates a recordset on "PHPSELF". Once it runs through the update it hits a header relocation code
header(sprintf("Location: %s", $updateGoTo));
and spits out the "headers allready sent" error.
I have a simple session running at the top of the page.
session_start();
header("Cache-control: private"); // IE 6 Fix.
$pass = $_SESSION['password'];
$inc = $inc;
I can't understand because at an earlier stage the update code was working and re-directing ok.
Cheers for any help.