以下为引用的内容: <? 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(); ?> |
以下为引用的内容: <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(); } ?> |