|
Posted by Jerry Stuckle on 10/29/06 03:22
laredotornado@zipmail.com wrote:
> Hi,
>
> I'm using PHP 4.4.4. What is the header I need to send in order for
> output to be continuously sent to the client browser as opposed to it
> being buffered and all sent at once?
>
> Thanks, - Dave
>
Dave,
There aren't any headers you can send. However, you can cause the data
to be sent to the browser immediately with:
ob_flush();
flush();
This will cause PHP to flush the output immediately, and generally
Apache will do the same. Whether or not it will be displayed
immediately, however, is up to the browser.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Navigation:
[Reply to this message]
|