I am trying to get some basic output buffering to work and not sure why it isn't...
<?php
echo "Line #1...<br>";
flush();
sleep(2);
echo "Line #2...<br>";
flush();
sleep(2);
echo "Line #3...<br>";
flush();
sleep(2);
echo "Line #4...<br>";
?>
This pauses the 8 seconds and then shows the page completely.
Checking PHPINFO(), output_buffering=4096. I tried using ob_start() and ob_flush to no avail.
I am lost at this....
suggestions....