Answers for "how to automatically redirect a page after few seconds in php"

PHP
0

php redirect after specific seconds

header("url=thepage.php;refresh:3");
exit();
// The user will be redirected after 3 seconds to thepage.php
Posted by: Guest on June-14-2021
0

how to redirect to another page in php automatic after 2 second

<meta http-equiv="refresh" content="5;url=http://thisinterestsme.com/detecting-ajax-requests-with-php/">
Posted by: Guest on December-11-2020

Code answers related to "how to automatically redirect a page after few seconds in php"

Browse Popular Code Answers by Language