RE: [PHP] DIsplaying page before script finnished

2001-02-25 Thread PHPBeginner.com
use flush() it will push the output out of apache. But note, if you have a table, on Netscape not much will be shown (even if it receives the data) until the arrives. Sincerely, Maxim Maletsky Founder, Chief Developer PHPBeginner.com (Where PHP Begins) [EMAIL PROTECTED] www.phpbeginner.

Re: [PHP] DIsplaying page before script finnished

2001-02-24 Thread Fredrik Wahlberg
I think if you use flush() you can send it continually. Rembember to end every line or the browser will not understand that it shall show it. Tables can also give you problems, they do not show until they are closed. /Fredrik On Sat, 24 Feb 2001, David Tandberg-Johansen wrote: > Hello! > > I wo

RE: [PHP] DIsplaying page before script finnished

2001-02-24 Thread James Moore
> -Original Message- > From: David Tandberg-Johansen [mailto:[EMAIL PROTECTED]] > Sent: 24 February 2001 16:34 > To: [EMAIL PROTECTED] > Subject: [PHP] DIsplaying page before script finnished > > > Hello! > > I wonder if there are any way to display the page before the script is > finish

Re: [PHP] DIsplaying page before script finnished

2001-02-24 Thread Kevin Beckford
try using flush() - Original Message - From: "David Tandberg-Johansen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, February 24, 2001 11:34 AM Subject: [PHP] DIsplaying page before script finnished : Hello! : : I wonder if there are any way to display the page before the s

Re: [PHP] DIsplaying page before script finnished

2001-02-24 Thread Kyndig
On Sat, 24 Feb 2001, David Tandberg-Johansen wrote: > Hello! > > I wonder if there are any way to display the page before the script is > finished? > > I have a loop in my script,and I want to display the resoult for each loop. Try the REFRESH meta tag > > Thanks > > David :-) > > > > --