Home  >  Article  >  Backend Development  >  Header() in PHP &html – Refresh (Redirect) to Location (URL) in X seconds,headerinphp_PHP教程

Header() in PHP &html – Refresh (Redirect) to Location (URL) in X seconds,headerinphp_PHP教程

WBOY
WBOYOriginal
2016-07-13 09:56:451173browse

Header() in PHP &html – Refresh (Redirect) to Location (URL) in X seconds,headerinphp

Case 1 : Redirect a page to a URL without waiting in PHP.

1 header("Location: index.php");

 

Case 2 : Redirect a page to an URL after waiting for X seconds in PHP.

1 2 3 4 5   header("Refresh: 5; url=index.php");   echo 'Logged in successfully.'; ?>

 HTML code to redirect a webpage after X seconds.

1 meta http-equiv="refresh" content="5; url=http://sau.comli.com/">

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/986429.htmlTechArticleHeader() in PHP html – Refresh (Redirect) to Location (URL) in X seconds,headerinphp Case 1 : Redirect a page to a URL without waiting in PHP. 1 header( "Location: index.php" )...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn