Home > php教程 > php手册 > PHP重定向三法

PHP重定向三法

WBOY
Release: 2016-06-13 09:59:10
Original
715 people have browsed it

方法一:

$GoTo="index.php";// 假如这里的目标链接取自数据库就实现了动态转向
header(sprintf("Location: %s", $GoTo));
?>

方法二:

window.location ="$PHP_SELF";";?>


方法三:

";?>

source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template