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' />";