URL跳轉代碼
1.代碼:
<? $url=$_GET["url"];header("Location:"."http://".$url);?> 如保存為aaa.php,可以實現aaa.php?url=www.baidu.com跳轉到百度的效果.
這個簡單的調用了默認的$_GET變量.以及php默認跳轉Location:
2.實例升級:增加if循環
代碼:
復制代碼 代碼如下:
<?
$url=$_GET["url"];
if (strlen($url >=3)){
header("Location:"."http://".$url);
}
?>
<html>
<head>
<title>URL轉向頁</title>
</head>
<body>
<form id="url" name="url" method="get" action="#">
<label>http://
<input name="url" type="text" value="" />
</label>
<input type="submit" name="Submit" value="提交" />
</form>
</body>
</html>