what was the way to print results from a php script while it\'s printing stuff before the script ends? i tried to play with output buffer, putting sleep() between echos to t
PHP loads a page all at once then displays it. Use flush() to show output as the script loads.
flush()