php在网页登录成功后如何实现网页跳转?

  • 来源:网络
  • 更新日期:2020-07-21

摘要:php在网页登录成功后实现网页跳转的方法:首先打开php编辑器,新建php文件;然后在【index.php】中输入代码【header('Location: index.php');】;最后在浏览器运行【login.

php在网页登录成功后实现网页跳转的方法:首先打开php编辑器,新建php文件;然后在【index.php】中输入代码【header('Location: index.php');】;最后在浏览器运行【login.php】页面即可。

php在网页登录成功后实现网页跳转的方法:

1、首先,打开php编辑器,新建php文件,例如:index.php。

2、在index.php中,输入代码:

header('Location: index.php');

3、浏览器运行login.php页面,此时会跳转到index.php页面。


相关学习推荐:PHP编程从入门到精通