Re: [PHP] Output text status on a long class

2008-10-14 Thread Stut
On 14 Oct 2008, at 15:56, Chrome wrote: I have a class that takes a while to run and am wanting to push some output to the browser while it's doing its stuff. Is that possible? Here's what I'd like: Connecting to server... Done! Retrieving categories... Done! ... All I can get it to do is

Re: [PHP] Output text status on a long class

2008-10-14 Thread uaca man
Dan, Try echo some text; ob_flush() http://br2.php.net/manual/en/function.ob-flush.php; *flush()* ; also take a look at the documentation at: http://br2.php.net/manual/en/function.flush.php Angelo 2008/10/14 Chrome [EMAIL PROTECTED] Hi all I have a class that takes a while to run and am

RE: [PHP] Output text status on a long class

2008-10-14 Thread Chrome
-Original Message- From: uaca man [mailto:[EMAIL PROTECTED] Sent: 14 October 2008 16:10 To: php-general@lists.php.net Subject: Re: [PHP] Output text status on a long class Dan, Try echo some text; ob_flush() http://br2.php.net/manual/en/function.ob-flush.php; *flush

RE: [PHP] Output text status on a long class

2008-10-14 Thread Chrome
Stut wrote: On 14 Oct 2008, at 15:56, Chrome wrote: I have a class that takes a while to run and am wanting to push some output to the browser while it's doing its stuff. Is that possible? Here's what I'd like: Connecting to server... Done! Retrieving categories... Done! ...

Re: [PHP] Output text status on a long class

2008-10-14 Thread Stut
On 14 Oct 2008, at 16:51, Chrome wrote: For the record I have included a 256 char long whitespace string along with any prospective output but still no joy Opera 9.60 reliably informs me it's received 258 bytes but displays nothing I'll carry on with this for a little before blaming the

RE: [PHP] Output text status on a long class

2008-10-14 Thread Chrome
On 14 Oct 2008, at 16:51, Chrome wrote: For the record I have included a 256 char long whitespace string along with any prospective output but still no joy Opera 9.60 reliably informs me it's received 258 bytes but displays nothing I'll carry on with this for a little before blaming

Re: [PHP] Output text status on a long class

2008-10-14 Thread Jim Lucas
Chrome wrote: On 14 Oct 2008, at 16:51, Chrome wrote: For the record I have included a 256 char long whitespace string along with any prospective output but still no joy Opera 9.60 reliably informs me it's received 258 bytes but displays nothing I'll carry on with this for a little before

RE: [PHP] Output text status on a long class

2008-10-14 Thread Boyd, Todd M.
-Original Message- From: Jim Lucas [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 14, 2008 11:56 AM To: Boyd, Todd M. Cc: php php Subject: Re: [PHP] Output text status on a long class Boyd, Todd M. wrote: Also, a setting to check it to make sure that output_buffering

Re: [PHP] Output text status on a long class

2008-10-14 Thread Jim Lucas
Boyd, Todd M. wrote: -Original Message- From: Jim Lucas [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 14, 2008 11:56 AM To: Boyd, Todd M. Cc: php php Subject: Re: [PHP] Output text status on a long class Boyd, Todd M. wrote: Also, a setting to check it to make sure

Re: [PHP] Output text status on a long class

2008-10-14 Thread Jay Moore
Stut wrote: On 14 Oct 2008, at 15:56, Chrome wrote: I have a class that takes a while to run and am wanting to push some output to the browser while it's doing its stuff. Is that possible? Here's what I'd like: Connecting to server... Done! Retrieving categories... Done! ... All I can get

Re: [PHP] Output text status on a long class

2008-10-14 Thread Jim Lucas
Boyd, Todd M. wrote: -Original Message- From: Jim Lucas [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 14, 2008 11:43 AM To: Chrome Cc: 'Stut'; 'Andrew Ballard'; 'Jay Moore'; php-general@lists.php.net Subject: Re: [PHP] Output text status on a long class Chrome wrote: On 14 Oct

Re: [PHP] Output text status on a long class

2008-10-14 Thread Andrew Ballard
On Tue, Oct 14, 2008 at 11:30 AM, Chrome [EMAIL PROTECTED] wrote: Stut wrote: On 14 Oct 2008, at 15:56, Chrome wrote: I have a class that takes a while to run and am wanting to push some output to the browser while it's doing its stuff. Is that possible? Here's what I'd like:

RE: [PHP] Output text status on a long class

2008-10-14 Thread Chrome
On Tue, Oct 14, 2008 at 11:30 AM, Chrome [EMAIL PROTECTED] wrote: Stut wrote: On 14 Oct 2008, at 15:56, Chrome wrote: I have a class that takes a while to run and am wanting to push some output to the browser while it's doing its stuff. Is that possible? Here's what I'd

RE: [PHP] Output text status on a long class

2008-10-14 Thread Boyd, Todd M.
-Original Message- From: Jim Lucas [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 14, 2008 11:43 AM To: Chrome Cc: 'Stut'; 'Andrew Ballard'; 'Jay Moore'; php-general@lists.php.net Subject: Re: [PHP] Output text status on a long class Chrome wrote: On 14 Oct 2008, at 16:51

Re: [PHP] Output text status on a long class

2008-10-14 Thread Jim Lucas
Chrome wrote: On 14 Oct 2008, at 16:51, Chrome wrote: For the record I have included a 256 char long whitespace string along with any prospective output but still no joy Opera 9.60 reliably informs me it's received 258 bytes but displays nothing I'll carry on with this for a little before

Re: [PHP] Output text status on a long class

2008-10-14 Thread Andrew Ballard
On Tue, Oct 14, 2008 at 11:19 AM, Chrome [EMAIL PROTECTED] wrote: -Original Message- From: uaca man [mailto:[EMAIL PROTECTED] Sent: 14 October 2008 16:10 To: php-general@lists.php.net Subject: Re: [PHP] Output text status on a long class Dan, Try echo some text; ob_flush