echo stuff b4 script is done

A

Anonymous

Guest
How do I echo something if the script is not finished executing, like in a while loop?
 
Code:
ob_end_flush();

while (....)
{
  .... echo (...);
   flush();
}
 
Now thtat I got that part finished, is there a way to place the most recent text at the top of the screen?

Thanks,
Virtuoso
 
Back
Top