PHP重定向和页面快速转向
发布:smiling 来源: PHP粉丝网 添加日期:2013-12-23 14:10:16 浏览: 评论:0
页面快速转向
- <?
- function turntopage($url="index.php",$info = "页面转向中...",$second=2){
- print "<html>n<head>n<title>页面转向中....</title>n";
- print "<meta http-equiv="refresh" content="$second;url=$url">n"; //开源代码phpfensi.com
- print "<style type="text/css">n<!--n";
- print "td { font-family: "verdana", "arial";font-size: 12px}n";
- print "a {color: #000000; text-decoration: none}n";
- print "-->n</style>n";
- print "</head>n<body>n";
- print "<table width="100%" border="0" align="center">n";
- //111cn.net
- print " <tr>n";
- print " <td height="200"> </td>n";
- print " </tr>n";
- print " <tr>n";
- print " <td align="center">n";
- print " <table width="60%" border="0" cellpadding="8" bgcolor="#aa9fff">n";
- //开源代码
- print " <tr>n";
- print " <td height="30" align="center">页面转向提示信息</td>n";
- print " </tr>n";
- print " <tr>n";
- print " <td align="center">$info</td>n";
- print " </tr>n";
- print " <tr>n";
- print " <td align="center">n";
- print " <a href="$url">如果你的浏览器不支持自动跳转,请按这里</a></td>n";
- print " </tr>n";
- print " </tr>n";
- print " </table></td>n";
- print " </tr>n";
- print " <tr>n"; //开源
- print " <td height="200"> </td>n";
- print " </tr>n";
- print "</table>n";
- print "</body>n</html>";
- exit;
- ?>
php重定向
- <?
- 方法一:header("location: index.php");
- 方法二:echo "<scrīpt>window.location ="$php_self";</scrīpt>";
- //开源代码
- 方法三:echo "<meta http-equiv="refresh" content="0; url=index.php">";
- ?>
Tags: 重定向 页面 快速转向
- 上一篇:ajax php用户无刷新登录实例
- 下一篇:生成讯雷地址php代码
相关文章
- ·php中的网页重定向(2013-12-09)
- ·Php实现301重定向跳转代码(2014-01-18)
- ·PHP实现301永久重定向方法(2014-03-18)
- ·php实现301永久重定向和302临时重定向方法(2014-06-30)
- ·asp/asp.net/php实现301重定向代码(2014-08-05)
- ·PHP获取301重定向页面跳转后真实URL地址(2014-09-12)
- ·header() 301重定向实现代码(2014-09-18)
- ·深入分析php 重定向(非常的有用)(2015-05-09)
- ·php 301重定向跳转解决方法(2017-03-23)
- ·PHP封装的一个支持HTML、JS、PHP重定向的多功能跳转函数(2021-02-22)
- ·php页面漏洞分析及相关问题解决(2013-11-13)
- ·PHP空白页面常见原因及解决方法(2013-11-27)
- ·php中UTF8编码页面iconv转码失败(2013-12-04)
- ·防止纯PHP页面中文乱码技巧(2013-12-07)
- ·简单的页面缓冲技术(2013-12-09)
- ·PHP生成静态页面的两种方法(2013-12-10)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)