RSS订阅
PHP程序员站--WWW.PHPERZ.COM  
网站地图
高级搜索
收藏本站

 当前位置:主页 >> PHP基础 >> 新手专区 >> 文章内容
初学PHP的18个基础实例
[收藏此页[打印本页]   
来源:互联网  作者:本站整理  发布时间:2007-12-29




  十一:实现页面的跳转:

  创建"jump.php"页面并且设置变量来隐藏连接的地址
以下为引用的内容:
<?
if ($id == "1"){$link = "http://phperz.com";}
if ($id == "2"){$link = "http://google.com";}

header("Location: $link"); // 实现了跳转
exit();
?>




  保存之后,在另外一个页中加入如下代码:
以下为引用的内容:

www~phperz~.com


<a href="jump.php?id=1">Visit This Link</a>




  跳转并且还把访客保存在你的页面内:
以下为引用的内容:
<?
if ($id == "1"){$link = "http://phperz.com";}
if ($id == "2"){$link = "http://google.com";}

echo "<frameset rows=\"0,100%\" border=\"0\">\n";
echo "<frame src=\"jump.php\" name=\"head\" scrolling=\"no\" marginheight=\"0\" frameborder=\"0\" noresize>\n";
echo "<frame src=\"$link\" name=\"body\" marginheight=\"10\" marginwidth=\"10\" frameborder=\"0\" noresize>\n"; PHP程序员站
echo "</frameset>\n";

header("Location: $link");
exit();
?>



  保存为jump.php然后再其他页内加入连接代码:
以下为引用的内容:
<a href="jump.php?id=1">Visit This Link</a>




  十二、保护页面:
以下为引用的内容:
www.phperz.com

<? $Referer = getenv("HTTP_REFERER");
if (!strchr($Referer, "http://webjx.com/page.php")) {
echo "<script>alert('你不能访问这个页面');
window.location='http://webjx.com';</script>";
exit(); } ?>


 上一篇:PHP中通过Web执行C/C++应用程序   下一篇:如何修改Apache返回的头部信息
 
 相关文章
 
发表评论
全部评论(0条)
 
 站内搜索
 热门搜索 mysql  基础  php基础  url
高级搜索 网站地图 站长工具 IP查询 收藏本站
 热点文章
 随机推荐
网站首页 | 网站地图 | 高级搜索 | RSS订阅
PHP程序员站 Copyright © 2007,PHPERZ.COM All Rights Reserved 粤ICP备07503606号 联系站长