PHP页面跳转总结
一、使用php内置函数:header()函数
<?php
$url='./test.php'; header("Location:$url"); ?>
注意Location的写法
二、利用php描绘html页面,间接使用Javascript
< ?php
$url = "http://test.cn";
echo "< script language='javascript' type='text/javascript'>";
echo "window.location.href='$url'";
echo "< /script>";
?>
三、利用php描绘html页面,创建页面刷新< meta http-equiv="refresh" content="1;url=http://xxx.cn">
< ?php $url = "http://test.cn"; ?> < html> < head> < meta http-equiv="refresh" content="1; url=< ?php echo $url; ?>"> < /head> < body> content 1s 后跳转 < /body> < /html>
四、利用php描绘表单和js ,然后使用js提交表单,可以实现post传送