Start your code with ob_start()
It fires up an output buffer, does not output (and headers)
until ob_end_flush() called.
Put ob_end_flush() after all, before last ?>

Your code might looks as follows:

<?php

ob_start();
echo whatever;
header whatever;
ob_end_flush();

?>

=============================================================
Heilig (Cece) Szabolcs - [EMAIL PROTECTED] - http://www.phphost.hu
=============================================================

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to