Redirecting
Moderator: General Moderators
Redirecting
Is there any way to SHOW A MESSAGE by ECHO and then use HEADER function to redirect the user to a diff page
- aceconcepts
- DevNet Resident
- Posts: 1424
- Joined: Mon Feb 06, 2006 11:26 am
- Location: London
Re: Redirecting
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">';