[PHP] Timed Redirect

2002-02-18 Thread Steven Walker
Is there way to have a page automatically redirect the user to another page, but with a timed delay? I'm working on a purchasing system. After a successful purchase, a thank you page is shown, and then I want to take the user to a download page a few seconds afterward. Thanks! Steven J.

RE: [PHP] Timed Redirect

2002-02-18 Thread Rick Emery
meta http-equiv=refresh content=15; URL=http://www.mydomain.com/newpage.html; will redirect after 15 seconds -Original Message- From: Steven Walker [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 2:16 PM To: [EMAIL PROTECTED] Subject: [PHP] Timed Redirect Is there way

Re: [PHP] Timed Redirect

2002-02-18 Thread Tyler Longren
header(Location: http://www.google.com/;, 5); That would redirect you to www.google.com in 5 seconds. Tyler - Original Message - From: Steven Walker [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, February 18, 2002 2:16 PM Subject: [PHP] Timed Redirect Is there way to have

Re: [PHP] Timed Redirect

2002-02-18 Thread Steven Walker
Here's what I found: This does not work: header(Location: http://www.google.com/;, 5); That would redirect you to www.google.com in 5 seconds. According to the documentation, the second param is bool replace, for replacing header information. This does work: META HTTP-EQUIV=Refresh