PHP seek page Jump-Common Methods: php seek page Jump
PHP page Jump 1. header () function
The header () function is a very simple method for page Jump in PHP. The main function of the header () function is to output the HTTP header to the browser.
The header () function is defined as follows:
void header (string string [,bool replace [,int http_response_code]])
The optional parameter replace indicates whether to replace the previous header or add a header of the same type. The default parameter is replace.
The second optional parameter http_response_code sets the HTTP code as the specified value. The Location header in the header function is a special header call, which is often used to redirect pages. Note: 1. There cannot be spaces between location and:. Otherwise, no jump will be made.
2. There cannot be any output before using the header.
3. the PHP code after the header will also be executed. For example, redirect a browser to a guanwei blog
<? Php
// Redirect the browser
Header ("Location: http://www.guanwei.org ");
// Ensure that subsequent code will not be executed after redirection
Exit;
?>
PHP page Jump 2. Meta tag
Meta tag is the tag that provides document Meta information in HTML. You can use this tag in a PHP program to redirect pages. If http-equiv is defined as refresh, the page will be redirected to the corresponding page within a certain period of time based on the value specified by content.
If you set content = "seconds; url = url", it defines how long the page will jump to the specified url. For example, after the meta tag is used to implement the vaccine, the page automatically jumps to the guanwei blog.
< meta http-equiv="refresh" content="1;url=http://www.guanwei.org">
For example, the following meta. php program will automatically jump to www.guanwei.org after one second in the page.
<? Php
$ Url = "http://www.guanwei.org";?>
<Html>
<Head>
<Meta http-equiv = "refresh" content = "1; url = <? Php echo $ url;?> ">
</Head>
<Body>
The page stays for only one second ......
</Body>
</Html>
PHP page Jump 3. JavaScript (common and recommended)
For example, this code can be placed in any legal position in the program.
< ?php
$url = "http://www.guanwei.org";
echo "<script language='javascript' type='text/javascript'>";
echo "window.location.href='$url'";
echo "</script>";
?>
How does one jump to a page in PHP?
It is not convenient to use php to jump, and most js is used for jump.
For example:
Echo "<script> location. href ='t. php'; </script>"; // jump to t. php
This method is commonly used.
Linux guidance: several methods for php to redirect pages
In actual development, all the functions of the website can be met by compiling in PHP, such as PHP page Jump. Explore PHP variable parsing order how to obtain submitted data in-depth interpretation of PHP Operating Mechanism Analysis PHP function extract () application skills for you to summarize some PHP information functions PHP query string skills share Web system, switching from one webpage to another is one of the most common technologies in LAMP projects. Page Jump may be caused by the user clicking a link or button, or automatically generated by the system. This section describes common methods for automatically page redirect in PHP. PHP page Jump 1. the header () function is a very simple method for page Jump in PHP. The main function of the header () function is to output the HTTP header to the browser. The header () function is defined as follows: void header (string [, bool replace [, int http_response_code]) the optional parameter replace indicates whether to replace the previous header or add a header of the same type. The default parameter is replace. The second optional parameter http_response_code sets the HTTP code as the specified value. The Location header in the header function is a special header call, which is often used to redirect pages.