PHP is the preferred language used by many programmers to develop WEB. In actual development, various functions of the website can be satisfied by writing in PHP language, such as PHP page jump.
Discuss how to obtain submitted data in PHP variable parsing order
In-depth interpretation of PHP operating mechanism
A brief analysis of PHP function extract() application skills
Summarize some PHP information functions for you
PHP query string skills sharing
In web systems, jumping from one web page to another is one of the most commonly used technologies in LAMP projects. Page jumps may be caused by users clicking links, buttons, etc., or they may be automatically generated by the system. Here we introduce the methods commonly used in PHP to achieve automatic 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 protocol header (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 specifies whether to replace the previous similar header or add a header of the same type. The default is replacement.
The second optional parameter http_response_code forces the HTTP response code to the specified value. The Location type header in the header function is a special header call, often used to implement page jumps. Note: 1. There cannot be a space between location and ":", otherwise it will not jump.
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 Lamp Brothers forum
[php]
< ?php
//Redirect browser
header("Location: http://bbs. lampbrother.net");
//Ensure that subsequent code will not be executed after redirection
exit;
?>
[php]
< ?php
//Redirect browser
header("Location: http://bbs. lampbrother.net");
//Ensure that after redirection, subsequent code will not be executed
exit;
?>
PHP page jump 2, Meta tag
TheMeta tag is a tag in HTML that is responsible for providing document meta-information. Using this tag in a PHP program can also achieve page jumps. If http-equiv is defined as refresh, when the page is opened, it will jump to the corresponding page within a certain period of time based on the value specified by content.
If content="seconds;url=website" is set, it defines how long it takes for the page to jump to the specified URL. For example, the meta tag is used to automatically jump to the LAMP Brothers Band official forum after the vaccine is released.
[html]
< meta http-equiv = "refresh"
content = "1;url=http://bbs.lampbrother.net" >
[html] view plaincopy
< meta http-equiv = "refresh"
content = "1;url=http://bbs.lampbrother.net" >
For example, the following program meta.php implements the page to automatically jump to bbs.lampbrother.net after staying on the page for one second.
[html]
< ?php
$ url = "http://bbs.lampbrother.net" ; ?>
< html >
< head >
< meta http-equiv = "refresh" content ="1;
url = < ?php echo $url; ?> " >
< /head >
< body >
页面只停留一秒……
< /body >
< /html >
[html]
< ?php
$ url = "http://bbs.lampbrother.net" ; ?>
< html >
< head >
< meta http-equiv = "refresh" content ="1;
url = < ?php echo $url; ?> " >
< /head >
< body >
页面只停留一秒……
< /body >
< /html >
PHP页面跳转三、JavaScript
例如,此代码可以放在程序中的任何合法位置。
[javascript]
< ?php
$ url = "http://bbs.lampbrother.net" ;
echo " < script language = 'javascript'
type = 'text/javascript' > ";
echo " window.location.href = '$url' ";
echo " < /script > ";
?>
[javascript] view plaincopy
< ?php
$ url = "http://bbs.lampbrother.net" ;
echo " < script language = 'javascript'
type = 'text/javascript' > ";
echo " window.location.href = '$url' ";
echo " < /script > ";
?>
以上就是我们向大家介绍的三种PHP页面跳转实现方法。