Re: [PHP] Re: clearing new pages

2004-05-27 Thread Craig
\n"; ?> Is another option Craig "Rick Fletcher" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > > Hi, > > > a file called a.php prints "hello" to the browser then calls > > > b.php which prints "goodbye" to the browser. > > > the output looks like this: > > > > > > hello > >

RE: [PHP] Re: clearing new pages

2004-05-26 Thread Tyler Replogle
hey, you could use some jave script there a.php: echo 'hello'; echo"

[PHP] Re: clearing new pages

2004-05-26 Thread John Kaspar
I put this at the top of long pages, $processing = " processing, please wait ... "; echo $processing; flush(); Then put this at the bottom, $hide = " if (document.layers) { processing.visibility='hide' } else if (document.all) { document.all('processing').

RE: [PHP] Re: clearing new pages

2004-05-26 Thread Rick Fletcher
> > Hi, > > a file called a.php prints "hello" to the browser then calls > > b.php which prints "goodbye" to the browser. > > the output looks like this: > > > > hello > > goodbye > > > > how do I clear the screen so the end results looks like this: > > a.php: > > echo 'hello'; > header('lo

[PHP] Re: clearing new pages

2004-05-26 Thread Torsten Roehr
"Michael Young" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > a file called a.php prints "hello" to the browser then calls b.php > which prints "goodbye" to the browser. > the output looks like this: > > hello > goodbye > > how do I clear the screen so the end results loo