PHP页面跳转到3种方法

php页面跳转到3种方法:

第一种,使用php的header函数

header("location: http://www.phpcode8.com/index.php“); 
//页面跳转到phpcode8首页


第二种,使用javascript window.location


$location="http://www.phpcode8.com";
echo " <script> window.location.href=$location </script> ";



第三种, 使用html refresh

$location = "http://www.phpcode8.com";
echo "<meta http-equiv='refresh' content='0;url=$location' />";


posted on 2012-03-28 21:43  IT技术畅销书  阅读(213)  评论(0编辑  收藏  举报

导航