<?php
for($i=0; $i<10; $i++)
{
echo "<BR>".$i.str_repeat(" ",256); //ÐÞ¸Ä
ob_flush(); //ÐÞ¸Ä
flush();
sleep(1);
}
?>