Forum Moderators: coopster
<?php
//Enable PHP max execution time
ini_set('max_execution_time',0);
ob_implicit_flush(true);
ob_end_flush();
while($counter <= 10)
{
echo str_repeat(" ", 1024*64); //because of FF buffer
echo $counter.'<br>';
sleep(1);
$counter++;
}
echo 'ALL DONE!';
?>