我正在尝试从使用ajax调用的php文件发送标头。问题是,当我用PHP验证所有信息时,我想重定向到另一个页面,但标题不起作用!任何想法?
代码的作用:
//------------- index.php
on click of input, function passes <input> values through $_POST to login.php
if($_SESSION[superman]==true){redirects to index_main.php}
//------------- login.php
all it does is validate forms and if login and password are correct, it sets $_SESSION [superman]=true
答案 0 :(得分:5)
重定向只会重定向 Ajax调用!如果要在浏览器中更改显示的页面,则需要在Ajax调用完成后使用Javascript重定向。
true
或者您要加载的页面的URL)location.href
。