Home  >  Article  >  Backend Development  >  Various methods to implement page jump in PHP

Various methods to implement page jump in PHP

韦小宝
韦小宝Original
2018-02-27 10:30:57107683browse

We occasionally encounter the problem of page jump in PHP during PHP development. There are many ways to implement page jump in PHP. Today we will take a look at what methods PHP has to implement page jump. !

Recommended manual:php complete self-study manual

Let’s look directly at how to implement page jump in PHP!

1. PHP jump code in one sentence:

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

3. PHP jump code javascript format:

"; 
echo "location.href='$url'"; 
echo "-->"; 
?>

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

 
 
 
 
 
 

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

Recommended related articles :
1.PHP Several implementation methods of jumping pages
2.How to implement the page jump function in PHP? (Example of function tags)
Related video recommendations:
1.Dugu Jiujian(4)_PHP video tutorial

Among the various methods of page jump mentioned above in PHP, which one you haven’t heard of before, you can try it yourself!

The above is the detailed content of Various methods to implement page jump 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