redirect page within a given time
Moderator: General Moderators
redirect page within a given time
hi there,
is it possible for me to redirect my page to another page let's say after 3 seconds after the current page loaded?
thanks.
pleigh
is it possible for me to redirect my page to another page let's say after 3 seconds after the current page loaded?
thanks.
pleigh
- n00b Saibot
- DevNet Resident
- Posts: 1452
- Joined: Fri Dec 24, 2004 2:59 am
- Location: Lucknow, UP, India
- Contact:
- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
<meta http-equiv="refresh" content="3;url=http://www.url.com">
to change the seconds you want it to stay at that page for enter it where the 3 is...
to change the seconds you want it to stay at that page for enter it where the 3 is...
This works:
Code: Select all
sleep(3);
header("Location: page.php");yup, i tried this code
and it worked..<meta http-equiv="refresh" content="3;url=http://www.url.com">