PHP string query tipsIn a web system, redirecting from one web page to another is one of the most commonly used 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. 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 [, 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 the browser to the official forum of the lamp brothers.
[PHP]
View plaincopyprint?
- <? PHP
- // Redirect the browser
- Header ("Location: http: // bbs. lampbrother.net ");
- // Ensure that subsequent code will not be executed after redirection
- Exit;
- ?>
<? PHP // redirect the browser header ("Location: http: // bbs. lampbrother.net"); // After the redirection, the subsequent code will not be 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, the page automatically jumps to the lamp brothers' official forum after the meta tag is used to implement the vaccine.
[HTML]
View plaincopyprint?
- <Meta
HTTP-equiv = "refresh"
- Content = "1; url = http: // bbs.lampbrother.net"
>
< meta http-equiv = "refresh" content = "1;url=http:// bbs.lampbrother.net" >
For example, the following meta. php program automatically jumps to bbs.lampbrother.net after one second of staying on the page.
[HTML]
View plaincopyprint?
- <? PHP
- $ Url = "http://bbs.lampbrother.net ";
?>
- <Html
>
- <Head
>
- <Meta
HTTP-equiv = "refresh"
Content = "1;
- Url = <? PHP echo $ URL;
?> ">
- </Head>
- <Body
>
- The page stays for only one second ......
- </Body>
- </Html>
<? PHP $ url = "http://bbs.lampbrother.net";?> <HTML> PHP page Jump 3. Javascript
For example, this code can be placed in any legal position in the program.
[JavaScript]
View plaincopyprint?
- <? PHP
- $ Url = "http://bbs.lampbrother.net ";
- Echo "<script language = 'javascript'
- Type = 'text/JavaScript '> ";
- Echo "window. Location. href = '$ url '";
- Echo "</SCRIPT> ";
- ?>
< ?php $ url = "http://bbs.lampbrother.net" ; echo " < script language = 'javascript' type = 'text/javascript' > "; echo " window.location.href = '$url' "; echo " < /script > "; ?>
The above are the three PHP page Jump implementation methods we will introduce to you.