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 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 Link to comment https://forums.phpfreaks.com/topic/173331-php-redirect-after-3minutes/#findComment-913688 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.