PHP Redirect Pause

前端 未结 8 1243
北荒
北荒 2020-12-28 19:08

How do I pause a page for a certain amount of seconds before redirecting the user to another HTML/PHP page using PHP?

8条回答
  •  遥遥无期
    2020-12-28 19:49

    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'"); 
    

提交回复
热议问题