Home Backend Development PHP Tutorial php页面跳转的几种实现方法

php页面跳转的几种实现方法

Jun 06, 2016 pm 07:54 PM
php page automatic Jump method accomplish several kinds Jump

php页面自动跳转的几种实现方法: 2.使用header函数 3.使用JavaScript ① http-equiv: 与文档中数据相关的HTTP文件首部 ② content: 与命名HTTP首部相关的数据 ③ name: 文档描述 ④ url: 与元信息相联系的URL 当我们定义属性http-equiv为refresh,打开




 

php页面自动跳转的几种实现方法:

2.使用header函数

3.使用JavaScript

 



  
   ① http-equiv: 与文档中数据相关的HTTP文件首部

          ② content: 与命名HTTP首部相关的数据

          ③ name: 文档描述

          ④ url: 与元信息相联系的URL


  当我们定义属性http-equiv为refresh,打开此Web页时系统将根据content规定的值在一定时间内跳转到相应页面,

        content="秒数;url=网址"就是定义了过多长时间跳转到指定的网址。


  
  
  

        它们可以各占一行。
  
  此法通用于任何环境,包含静态的网站空间。


  
方法二:使用header函数
  header函数是php内置函数中的HTTP相关函数之一,该函数送出HTTP协议标头到浏览器。

       使用它可以重定向URL,即令页面转向其他指定的网页。

        以下例子,执行后将自动打开www.baidu.com
  
  header("Location:
http://www.baidu.com");
  

 而且,此前页面也不能print或echo任何内容。

换句话说,在页面的出现前,程序只单纯地处理header事件。

尽管有如此严格的要求,灵活地使用它,仍然可以达成页面的自动跳转功能,

比如登录页面,通过判断用户提交的数据是否合法来决定页面跳转到何处。

  以下给出一个简单的例子:
  
  <?php /* 登录程序 - 文件名:login.php 程序作用 - 判断用户登录口令 */

         if($_POST['Submit']) {

                   session_start();

                  if($_POST['pws']=='123') {             //若密码为 123

                                $_SESSION['passwd']='123'; //写入会话数据

                                 header("Location:index.php"); //跳转到正常页面

                 }else{

                                 header("Location:login.php"); //跳转到登录页面 }

                }

               //表单代码略(也可以用纯html代码写表单,若如此,代码应放在程序之后

              ?>

 

             <?php        /* 检测会话数据 - 文件名:index.php 程序作用 - 检测会话数据中的密码是否为123,若不是,返回 登录页面 */

                           session_start();

                          if($_SESSION['passwd']!='123')

                            header("Location:login.php");

                          //其他代码(纯HTML代码应写在程序之后)  

          ?>
  此法显然只能用于支持php的空间环境。

  <?php /* 登录程序 - 文件名:login.php 程序作用 - 判断用户登录口令 */         if($_POST['Submit']) {                   session_start();                  if($_POST['pws']=='123') {             //若密码为 123                                $_SESSION['passwd']='123'; //写入会话数据                                 header("Location:index.php"); //跳转到正常页面                 }else{                                 header("Location:login.php"); //跳转到登录页面 }                }               //表单代码略(也可以用纯html代码写表单,若如此,代码应放在程序之后              ?>             <?php        /* 检测会话数据 - 文件名:index.php 程序作用 - 检测会话数据中的密码是否为123,若不是,返回 登录页面 */                           session_start();                          if($_SESSION['passwd']!='123')                            header("Location:login.php");                          //其他代码(纯HTML代码应写在程序之后)            ?>
Copy after login


  方法三:使用JavaScript
  JS非常灵活,利用它可以做出功能非常强大的程序脚本,这里仅举一个简单的页面自动跳转的JS例子。

                   以下代码执行后浏览器将自动转到www.baidu.com,该代码可放在页面中的任何合法的位置:
  
       <script language="javascript" type="text/javascript"> window.location.href("
http://www.baidu.com"); </script>
   此代码适用于任何Web环境。若加入定时器,将更加妙不可言

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles