php页面重定向的有关问题
时间:2021-07-01 10:21:17
帮助过:2人阅读
php页面重定向的问题
请问php页面重定向有哪些方式,对于通过传递id值而产生新的页面该怎么实现?
php?页面重定向
php
------解决方案--------------------
一、header("location: http://....");
注意点:1.header之前不能有其他输出。
2.header重定向后及时exit防止后续语句被执行。
二、HTML中的META
三、写js
echo "";
传递过来的变量直接附在url后即可传入下一页面,$url = 'http://xxx.com/a.php?a='."$a";
------解决方案--------------------
header("location: http://www.sina.com.cn/?a=1111");