写写程序,一种成就的感觉

写写程序,一种成就的感觉

导航

2010年6月8日

摘要: 在PHP中用header("location:test.php")进行跳转要注意以下几点,有助于解决一些新手经常遇到的问题1、location和“:”号间不能有空格,否则会出错。 2、在用header前不能有任何的输出。 3、header后的PHP代码还会被执行。 下面是和asp中重定向response.redirect的比较: 例1: response.redirect ... 阅读全文

posted @ 2010-06-08 11:10 hateyoucode 阅读(618) 评论(0) 推荐(0) 编辑

摘要: <?phpif(1){ header("Location:http://www.baidu.com/");} header("Location:01.php"); header("Location:03.php"); header("Location:http://www.sina.com"); echo "111"; header("Location:http://www.g.cn"); ... 阅读全文

posted @ 2010-06-08 10:49 hateyoucode 阅读(10206) 评论(0) 推荐(0) 编辑