Home >Backend Development >PHP Tutorial >3 Ways to Redirect in PHP_PHP Tutorial

3 Ways to Redirect in PHP_PHP Tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-21 15:12:05828browse

Copy code The code is as follows:

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

//2
echo '
window.location = "index.php";
';

//3
echo "";

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/326747.htmlTechArticleCopy the code as follows: //1 header("Location: index.php"); //2 echo ' scrīpt type="text/javascript" window.location = "index.php"; /scrīpt'; //3 echo "META HTTP-EQUIV="Refresh"...
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