Home  >  Article  >  Backend Development  >  How to jump to redirect page in php

How to jump to redirect page in php

coldplay.xixi
coldplay.xixiOriginal
2020-08-03 10:03:222609browse

How to jump to the redirected page in php: 1. Use the [header()] function to redirect; 2. Use the meta tag in the HTML header; 3. Use javascript to jump, the code is [ $url='index.php'].

How to jump to redirect page in php

php method to jump to the redirect page:

First method: use header() The function performs redirection, which is what I use more often. (Note! There cannot be a space between locationhe and ":", otherwise it will have no effect!)

<?php
header(&#39;content-type:text/html;charset=uft-8);
//重定向页面
header(&#39;location:index.php&#39;);
?>

Second: Use the meta tag in the HTML header to define http-equiv=refresh and content="The time it takes to jump (in seconds); url=jump address"

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
//跳转页面,跳转时间:3秒钟,目标地址:index.php
<meta http-equiv="refresh" content="3;url=index.php">
<title>skip...</title>
</head>

or

<?php
header(&#39;content-type:text/html;charset=utf-8&#39;);
$url=&#39;index.php&#39;;
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
//跳转页面,跳转时间:2秒钟,目标地址:index.php
<meta http-equiv="refresh" content="2;url=<?php echo $url; ?>">
<title>skip...</title>
</head>

The third way: use javascript to jump

<?php
header(&#39;content-type:text/html;charset=utf-8&#39;);
$url=&#39;index.php&#39;;
//立即跳转至目标页面
echo <script>window.location.href=&#39;$url&#39;;</script>;
?>

The above are the three methods of redirecting pages in PHP.

Relevant learning recommendations: php graphic tutorial

The above is the detailed content of How to jump to redirect page in php. For more information, please follow other related articles on the PHP Chinese website!

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