Hi
I'm using a WYSIWYG text editor on my page. The thing is that the constructor send header information to avoid caching etc. Now, output is sent before this and I could solve it by putting ob_start() and ob_end_flush() all over the place 😛. But I got tired of it right now and decided to try with ob_start at the top of the site and ob_end_flush() at the end. This worked fine and solved ALL my "headers already sent" error from this class and other things. However, I can't help feeling that there is a darker side to this. otherwise people would do it all the time. So, why should I not do this? (My inner voice sais I shouldn't)