Re: [PHP] Continue processing after redirect?

2002-08-17 Thread lallous
Hello Rasmus, Now that the topic has been brought, How much long will the script keep running after the redirection request has been made? Doesn't that behaviour depend from browser to browser ? Thanks, Elias Rasmus Lerdorf [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL

Re: [PHP] Continue processing after redirect?

2002-08-17 Thread Rasmus Lerdorf
It has absolutely nothing to do with the browser. PHP is a server-side language. See http://www.php.net/manual/en/features.connection-handling.php -Rasmus On Sat, 17 Aug 2002, lallous wrote: Hello Rasmus, Now that the topic has been brought, How much long will the script keep

[PHP] Continue processing after redirect?

2002-08-16 Thread Jason Morehouse
Any ideas if it's possible to keep a script running for a short time after a client has been redireced? i.e: ? header(Location: http://php.net;); # contunue running... mail([EMAIL PROTECTED], Hey, Hi!); ? Using Redhat Linux, Apache PHP 4.2.2. Much thanks! -Jason -- PHP General Mailing

Re: [PHP] Continue processing after redirect?

2002-08-16 Thread Rasmus Lerdorf
Sure, in fact, that happens by default unless you explicitly exit or try to output something. On Sat, 17 Aug 2002, Jason Morehouse wrote: Any ideas if it's possible to keep a script running for a short time after a client has been redireced? i.e: ? header(Location: http://php.net;); #