PHP程序员站--PHP编程开发平台
 当前位置:主页 >> PHP基础 >> 新手专区 >> 

初学PHP的18个基础实例

初学PHP的18个基础实例

来源:互联网  作者:本站整理  发布时间:2007-12-29
怎么样创建我们的第一个PHP页面呢?非常简单的!选择



  十一:实现页面的跳转:

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

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




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

<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";
echo "</frameset>\n";

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



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




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

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

Tags: 初学PHP   基础   实例   实例   基础   php  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号