Home > Article > Backend Development > How to jump to the current page in php
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.
Recommended: "PHP Video Tutorial"
PHP implements URL address jump code
1. PHP jump code in one sentence:
<?php $url = $_GET['url']; Header("Location:$url"); ?>
2. PHP jump code if judgment:
if($_COOKIE["u_type"]){ header('location:register.php'); } else{ setcookie('u_type','1','86400*360');//设置cookie长期有效 header('location:zc.html'); }
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='$url'"; 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!