peranha Posted December 14, 2007 Share Posted December 14, 2007 How do I forward users to a page after 5 seconds instead of immediately. Here is my code as of now. <?PHP header("Location: home.php"); ?> what do I add to this? Link to comment https://forums.phpfreaks.com/topic/81739-solved-header-redirection/ Share on other sites More sharing options...
themistral Posted December 14, 2007 Share Posted December 14, 2007 A quick search on google turned this up header("refresh:5; url='home.php'"); I haven't tried it but it's worth a go! Let us know if it works! Link to comment https://forums.phpfreaks.com/topic/81739-solved-header-redirection/#findComment-415141 Share on other sites More sharing options...
quickstopman Posted December 14, 2007 Share Posted December 14, 2007 i agree with themistral that should work and alos just incase.. put this at the very first line of your document: ob_start(); and that should do the trick for ya. Link to comment https://forums.phpfreaks.com/topic/81739-solved-header-redirection/#findComment-415146 Share on other sites More sharing options...
peranha Posted December 15, 2007 Author Share Posted December 15, 2007 Yes that worked. Thanks. Link to comment https://forums.phpfreaks.com/topic/81739-solved-header-redirection/#findComment-415274 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.