|
Posted by noone on 02/05/06 00:12
laredotornado@zipmail.com wrote:
> Hi,
>
> What directives/headers can I add to my PHP page so that output is
> displayed on my HTML browser as it is received as opposed to waiting to
> receieve it all and then displaying it? Ideally, this solution would
> work for PC IE 6, Firefox, and Safari,
>
> Thanks for the help, - Dave
>
some well placed flush(); commands work for me....
do stuff
flush();
do more stuff
flush();
etc...
M.
[Back to original message]
|