初学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> |
十二、保护页面:
以下为引用的内容: phperz.com <? $Referer = getenv("HTTP_REFERER"); if (!strchr($Referer, "http://webjx.com/page.php")) { echo "<script>alert('你不能访问这个页面'); window.location='http://webjx.com';</script>"; exit(); } ?>
|
|
上一页12345下一页 |
[收藏此页] [打印本页] [返回顶部] |
|
|
|
|
|
|
|
|
|