Re: Query - Warning: Cannot modify header information

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



You can simply avoid that by buffering the output:

<?php
ob_start();
// your code
// ...
ob_end_flush();
?>

or (older versions of PHP):

<?php
ob_start();
// your code
// ...
echo ob_get_contents();
?>

Emil Novak, Slovenia, EU

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



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux