How do I pause a page for a certain amount of seconds before redirecting the user to another HTML/PHP page using PHP?
If you want to wait and then go back to the previous page here's how
$referrer = $_SERVER['HTTP_REFERER']; header ("Refresh: 2;URL='$referrer'");