Possible Duplicate:
“Warning: Headers already sent” in PHP
I'm getting an error:
Warning: Cannot modify header information - headers already sent by (output started at /home/content/52/5148252/html/ruhuna/common/header.php:8) in /home/content/52/5148252/html/ruhuna/login.php on line 115
I know error is caused by white space but I couldn't find any blank space in my files. Therefore I added ob_start()
to my header.php and the problem went away.
Am I likely to encounter any problems due to adding ob_start
?
I didn't use ob_flush()
, is that going to cause any problems?
If so, where would I need to add ob_flush()
"