<?php
set_time_limit(0);
ob_end_clean();
ob_implicit_flush(1);
$i=0;
while ( $i>=0 ) {
sleep(1);
echo $i;
$i++;
}
?>