Home > Backend Development > PHP Problem > How to implement URL jump in php

How to implement URL jump in php

藏色散人
Release: 2023-03-07 18:54:01
Original
7394 people have browsed it

How to implement URL jump in php: 1. Use "Header("Location:$url");" to implement the jump; 2. Use the if judgment to implement the jump; 3. Use "echo " The location.href='$url'";" method implements jumps and so on.

How to implement URL jump in php
The operating environment of this tutorial: Windows 7 system, PHP version 5.6. This method is suitable for all brands of computers.

Recommended: "PHP Video Tutorial"

Common PHP implementation URL address jump code

1. PHP jump code in one sentence:

<?php 

$url = $_GET[&#39;url&#39;]; 

Header("Location:$url"); 

?>
Copy after login

Note: If saved as ad.php, you can achieve the effect of ad.php?url=www.baidu.com jumping to Baidu.com

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;); 

}
Copy after login

Note: Save it as zc.php. When the user visits zc.php, it will judge whether a cookie exists. If it exists, jump to register.php. If it does not exist, it will jump to register.php. Then create a cookie and jump to zc.html

3. PHP jump code javascript format:

<?php 

$url=czbin.php; 

echo "<!--<SCRIPT LANGUAGE="javascript">"; 

echo "location.href=&#39;$url&#39;"; 

echo "</SCRIPT>-->"; 

?>
Copy after login

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

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

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;  

?>
Copy after login
  • This method is suitable for all brands of computers.

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

Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template