Summary of page jump method in PHP development _php Tutorial

Source: Internet
Author: User

Summary of page jump method in PHP development


The function of the PHP page jump is to jump one page of the Web site to another page. For a friend who has just learned PHP language, it is the basic method that must be mastered.

Page jumps may be triggered by a user clicking a link, a button, and so on, or it may be automatically generated by the system. Page automatic jump in the Web development is often used, and according to the requirements can be different ways of jumping, such as prompting the operation of information after delay jump, etc., this article summarizes the Web development of several common page jump method.

PHP header () function jump

PHP header () function is very powerful, which in the page URL jump is also called simple, using the header () to jump directly to the specified URL page, when the page jump is 302 redirect:

?

1

2

3

$url = "http://www.jb51.net/";

Header ("Location: $url");

We may encounter a special jump, such as the website has a page address to do 301 Redirect, of course, you can use the Web configuration rewrite to achieve, but now I want to tell you, can be used in PHP header () function to do 301 jump, the code is as follows:

?

1

2

3

301 Jump

Header ("http/1.1 301 Moved permanently");

Header ("Location: $url");

Meta settings jump

The meta information in HTML can be set directly to jump, you can set the jump delay time and jump URL, often applied, such as the payment is finished to tell the user to pay the success and jump to the order page, the code is very simple, add a sentence:

?

1

The above code indicates that the page will automatically jump to http://www.jb51.net after 5 seconds.

JavaScript jump

JavaScript jump is also very simple, a direct sentence:

?

1

2

3

Note that the above code directly after the jump, in the destination page address is not get the route (Referer, also known as source), in the actual project, encountered a customer request jump to bring the road (that is, the target page can get to the page from where to jump), at this time, We can simulate a click with JavaScript and then jump to meet the customer's needs.

?

1

2

3

4

5

6

7

8

Of course, in the actual development we can put the following two ways to integrate into PHP, easy to apply a variety of jump requirements.

The above mentioned is the whole content of this article, I hope you can like.

http://www.bkjia.com/PHPjc/990335.html www.bkjia.com true http://www.bkjia.com/PHPjc/990335.html techarticle page Jump method in PHP development summary The function of the PHP page jump is to jump one page in the website to another page. For a friend who has just learned PHP language, it is necessary ...

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.