tags:

views:

34

answers:

1

Hey,

well I have this script and basically it's doing a loop of stuff, now when I was running the same script on my friends server it would display the progress live, like display text as it was doing the loop.

But now for some reason on my server, it's waiting until the scripts done executing completely before displaying any data what so ever.

You guys got any ideas?

Thanks!

+1  A: 

Add

 ob_flush();
    flush(); 

After each system out (echo / print) etc ..

Stewie