--- Lee Herron <[EMAIL PROTECTED]> wrote:
> I'm interested in how most would create a transition
> page..

One thing you might consider is using flush() to output
what you have so far to the browser rather than sending
them to another page when you're done. An example of
something to output might be:

<p>This might take a while...</p>
<?
flush()
do_hard_stuff();
?>
<p>Finished!</p>

If you are using output buffering, you'll have to flush
that, too. If your Web server is doing any kind of
buffering, it might not work at all.

Chris

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to