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, To

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: > >> > >> Als

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 >>

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

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 thi

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 thi

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

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? >> >> >> >> Her

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 br

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? >

[PHP] Output text status on a long class

2008-10-14 Thread Chrome
Hi all 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 output all of the text at the end of

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

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

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 i

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

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

2008-10-14 Thread uaca man
Dan, Try echo "some text"; ob_flush() ; *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 a

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 o