Page 1 of 1

Redirecting

Posted: Thu Oct 23, 2008 1:42 pm
by hmvrulz
Is there any way to SHOW A MESSAGE by ECHO and then use HEADER function to redirect the user to a diff page

Re: Redirecting

Posted: Thu Oct 23, 2008 2:05 pm
by aceconcepts
You can use meta refresh:

Code: Select all

 
echo'This page will redirect in 5 seconds';
 
echo'<meta http-equiv="refresh" content="5;url=http://www.otherwebsite.com">';