php使用header()跳转页面的方法:
1、使用“header('Location:url页面地址');”立即跳转页面;
<?php header('Location:http://www.baidu.com'); ?>
2、使用“header('Refresh:time,Url=url页面地址');”在指定time(秒)时间跳转页面。
<?php header('Refresh:3,Url=http://www.baidu.com'); ?>