Home  >  Article  >  Backend Development  >  How to jump to the current page in php

How to jump to the current page in php

藏色散人
藏色散人Original
2020-08-27 09:03:434190browse

How to jump to the current page in php: 1. Use the "Header("Location:$url");" method to realize the jump; 2. Use the if judgment to realize the jump; 3. Use "echo" "location.href='$url'";" method implements jump, etc.

How to jump to the current page in php

Recommended: "PHP Video Tutorial"

PHP implements URL address jump code

1. PHP jump code in one sentence:

<?php 
$url = $_GET[&#39;url&#39;]; 
Header("Location:$url"); 
?>

2. PHP jump code if judgment:

if($_COOKIE["u_type"]){ 
    header(&#39;location:register.php&#39;); 
} 
else{ 
   setcookie(&#39;u_type&#39;,&#39;1&#39;,&#39;86400*360&#39;);//设置cookie长期有效 
    header(&#39;location:zc.html&#39;); 
}

Note: Save as zc.php, when the user When accessing zc.php, determine whether a cookie exists. If it exists, jump to register.php. If it does not exist, create a cookie and jump to zc.html

3. PHP jump code javascript:

<?php 
$url=czbin.php; 
echo "<!--<SCRIPT LANGUAGE="javascript">"; 
echo "location.href=&#39;$url&#39;"; 
echo "</SCRIPT>-->"; 
?>

4. PHP jump code HTML markup (REFRESH attribute of META):

<HTML> 
<HEAD> 
<META HTTP-EQUIV="REFRESH" CONTENT="10"; URL=www.zhimengba.com/> 
</HEAD> 
<BODY> 
</BODY> 
</HTML>

Note: CONTENT="10" here means to jump after 10 seconds.

5. PHP jump code HTTP header information (Header function) formula:

<?php 
$url = czbin.php 
Header("HTTP/1.1 303 See Other"); 
Header("Location: $url"); 
exit;  
?>

The above is the detailed content of How to jump to the current 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