Gayner Posted September 6, 2009 Share Posted September 6, 2009 I want to be bable to run the php redirection location header when it's been 3minutes possibler ? thanks so i can kick my users back to index Quote Link to comment https://forums.phpfreaks.com/topic/173331-php-redirect-after-3minutes/ Share on other sites More sharing options...
DavidAM Posted September 6, 2009 Share Posted September 6, 2009 You can't do that. The user does not get the page until PHP is through with it. However, you can use an HTML refresh command in the HEAD section: <meta http-equiv="refresh" content="2;url=index.php" /> the 2 in the line above is 2 seconds. So for 3 minutes it would be 180 Quote Link to comment https://forums.phpfreaks.com/topic/173331-php-redirect-after-3minutes/#findComment-913688 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.