Hi,
output means anything that might be sent to the browser before the header is sent, like an echo or often that there are empty lines in front of the PHP block.
Post the code.
Example:
<?PHP
echo "Hi";
header("Location: somewhere.php");
exit;
?>
or
<?PHP
session_start();
?>
when using session cookies.
In both examples there is an empty line in front of <?PHP. In the first example the echo "Hi" will mess up thing, too.
Thomas