How you can make a redirect with PHP after a specific number of seconds ?
There are three options available:
The first one is to use a meta refresh
1 |
<meta http-equiv="refresh" content="10;url=http://yoursite.com"> |
or a javascript function:
1 2 3 |
setTimeout(function(){ window.location = "http://yoursite.com"; }, 10000); |
You can however use the PHP function header with the following sintax:
1 |
header('Refresh: 10; URL=http://yoursite.com'); |





