Hi Please View Below Code :
\\n\";
for( $i = 0 ; $i < 10 ; $i++ )
{
echo \"$i
\\n\";
I've discovered that this was due to Apache's gzip compression being in use for my case.
To turn gzip off for the 'flushing' script only, I created a new .htaccess
file in the directory where the continuous output script resides, with the following:
SetEnv no-gzip 1
Flushing is working as expected again.