Could someone please save these 2 files and run them and tell me why I get the error \" ob_flush() [ref.outcontrol]: failed to flush buffer. No buffer to flush\". I tried go
Where is ob_start()?
ob_flush flushes the output buffer to your file handle. Maybe you have it wrong.
An example:
ob_start(); //start output buffering echo 'hello world'; //not outputed ob_flush(); //sends the output buffer so displays hello world.
manual