By default, PHP's output is buffered.

To disable output buffering use

ob_implicit_flush();

somewhere in your script.

This flushes previous output to the client and disables buffering.

For more info look at the manual's chapter on 'Output buffering'.

bvr.

On Wed, 6 Feb 2002 09:32:29 +0200, val petruchek wrote:

>Hello, list!
>
>I've php script that works for seveeral minutes (3-5) - it indexes my site
>and when page is indexed it echoes a one-row table (page bla.bla.bla
>indexed). But browser shows it only when it gets all the page.
>
>I want it to show line by line... I know it can be done in perl
>(www.tracert.com)
>
>How can this be done in php: sending to a browser parts of html generated?




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to