Answers for "php redirect to another page after 5 seconds"

PHP
2

php redirect in seconds

header("refresh:5;url=wherever.php");
Posted by: Guest on March-16-2020
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 "php redirect to another page after 5 seconds"

Browse Popular Code Answers by Language