RE: [PHP-WIN] flushing output to the browser whilst the script does something useful

2002-05-09 Thread Scott Hurring
9, 2002 3:40 PM > To: Mr. Adam ALLEN.; [EMAIL PROTECTED] > Subject: Re: [PHP-WIN] flushing output to the browser whilst > the script > does something useful > > > You might want to look at the flush() function which seem to > do exactly > what you need. > > htt

Re: [PHP-WIN] flushing output to the browser whilst the script does something useful

2002-05-09 Thread Olivier Hubert
You might want to look at the flush() function which seem to do exactly what you need. http://www.php.net/manual/en/function.flush.php However please note that your web server might still buffer the output. You would then have to look at the server level to solve your problem. Hope this helps