php页面如何跳转到另一个php页面
时间: 2023-08-21 11:01:44 浏览: 128
php页面跳转的方式
在 PHP 中,要实现页面跳转可以使用 header 函数,示例代码如下:
```
header("Location: http://www.example.com/another_page.php");
```
其中,Location 参数指定了要跳转到的页面 URL,可以是绝对路径或相对路径。如果要跳转到同一个网站下的另一个 PHP 页面,可以使用相对路径,如:
```
header("Location: /another_page.php");
```
需要注意的是,使用 header 函数进行页面跳转时,必须确保在调用 header 函数之前没有输出任何内容,否则会导致跳转失败。此外,建议在调用 header 函数后添加 exit 或 die 函数,以确保在跳转后不会继续执行后续代码。
阅读全文