PHP from one page to another page redirect three ways for reference.
First, use HTTP header information
That is to use PHP's HEADER function. The function of the HEADER function in PHP is to issue to the browser control instructions that the HTTP protocol should have passed through the WEB server, such as declaring the type of information returned ("Context-type: xxx / xxx"), the page's attributes cache "," Expire ") and so on. Here's how to redirect to another page using HTTP header information:
<?
if (isset ($ url))
{
Header ("HTTP / 1.1 303 See Other");
Header ("Location: $ url");
exit
}
?>
Notice that there is a space after "Localtion:".
Second, mark with HTML
Marked with HTML, is to use META's REFRESH tag, for example as follows:
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.