ralphi: sleep Funktion

Beitrag lesen

ich hab das mit flush() mal ausprobiert.
Aber es hilft leider nicht.

probiers mal wie im Beispiel von php.net - also erst nach echo senden.

This will show each line at a time with a pause of 2 seconds.  
(Tested under IEx and Firefox)  
  
<?php  
  
if (ob_get_level() == 0) ob_start();  
  
for ($i = 0; $i<10; $i++){  
  
        echo "<br> Line to show.";  
        echo str_pad('',4096)."\n";  
  
        ob_flush();  
        flush();  
        sleep(2);  
}  
  
echo "Done.";  
  
ob_end_flush();  
  
?>

Viele Grüße aus LA

--
ralphi