this is my first question here on stackoverflow, I just curious.. is it possible to delay loop in PHP ? I\'m trying to print each result to browser and pause the script usin
Servers usually buffer the output of a server side script until there's enough in it to output
try something like this. Combination of setting output buffering off and manually flushing the buffer. Note the implcit flush line and the flush and ob_flush lines.