Home  >  Article  >  Backend Development  >  How to jump to a specified page in php

How to jump to a specified page in php

L
LOriginal
2020-06-01 14:38:435096browse

How to jump to a specified page in php

The first one: Use the header() function for redirection, which is the most commonly used one. (Note! There cannot be a space between locationhe and ":", otherwise it will have no effect!)

Second: Use the meta tag in the HTML header to define http-equiv=refresh and content="jump The time it takes to transfer (in seconds); url=jump address”




    
    //跳转页面,跳转时间:3秒钟,目标地址:index.php
    
    skip...

The third method: use javascript to jump

window.location.href='$url';;
?>

The above are the three methods of redirecting pages in PHP .

Recommended tutorial: "PHP Tutorial"

The above is the detailed content of How to jump to a specified page in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn