Chetan Rane wrote:
Hi gang
I am using ob_start() in my application. However I am getting this error
about headers already sent.
I have put ob_start at the beginning of the script. I think this has to do
something with Unicode.
Can anyone explain why this happens. And whats the solution for this
Chetan Dattaram Rane | Software Engineer | Persistent Systems
<mailto:milind_kharkar@xxxxxxxxxxxxxxxx> chetan_rane@xxxxxxxxxxxxxxxx |
Cell: +91 94033 66714 | Tel: +91 (0832) 30 79014
Innovation in software product design, development and delivery-
<http://www.persistentsys.com> www.persistentsys.com
Put this above the ob-start():
ini_set("display_errors", "on");
error_reporting(E_ALL);
I didn't test it; but vaguely recall that the error msg
includes the line where the first header was sent.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php