forwarding to next page

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
bugthefixer
Forum Contributor
Posts: 118
Joined: Mon Mar 22, 2004 2:35 am

forwarding to next page

Post by bugthefixer »

i have a page which is the logo page of my site that has an enter button when user presses enter, user enters the site. now i want to set a timer so that even if user doesnt presses enter for a specific time still it enters the site after that specif time.
lolpix
Forum Commoner
Posts: 41
Joined: Sat Jul 17, 2004 2:20 am

Post by lolpix »

Code: Select all

<head>

    <meta http-equiv="refresh" content="2;url=http://www.example.com/">

</head>

content="time in seconds;url=page to redirect to"

Do not set the time too short, as it may redirect the browser before all the images on the index page load.
Post Reply