RE: [PHP] Flush()....go to bottom of page (might be 0T)

2004-08-09 Thread Ford, Mike [LSS]
On 07 August 2004 23:24, PHP Gen wrote: > This is what i am using: > > for($i=0; $i<1000;$i++) > { > echo "something"; > echo str_repeat(" ", 256); flush(); ob_flush(); > sleep(1); > } Regardless of solving your scrolling problem, these flush calls are the wrong way round -- ob_flush() flush

Re: [PHP] Flush()....go to bottom of page (might be 0T)

2004-08-07 Thread PHP Gen
--- John Holmes <[EMAIL PROTECTED]> wrote: > PHP Gen wrote: > > Hi, > > I am using flush() and ob_flush() in one of my > scripts > > and its working great.., just one problem, as it > keeps > > outputting x on the screen the page just stays > on > > top...is there anyway (I am not sure via ph

Re: [PHP] Flush()....go to bottom of page (might be 0T)

2004-08-07 Thread John Holmes
PHP Gen wrote: Hi, I am using flush() and ob_flush() in one of my scripts and its working great.., just one problem, as it keeps outputting x on the screen the page just stays on top...is there anyway (I am not sure via php...but maybe JavaScript? ) to make the browser "follow" the output below