我正在编写一个基本的授权系统,但我有点挣扎。涉及两个文件 -index.php
和login.php
. 登录表单非常简单(在里面index.php
):
<fieldset class="right">
<label for="email">Email
<input id="email" name="email" type="text" value=""/>
</label>
<label for="password">Password
<input id="password" name="password" type="password" />
<a href="#" onclick="$('#password-box').toggle();" >Forgot your password?<span></span></a>
</label>
<div class="btn-login"><button type="submit" value="Login"></button></div>
</fieldset>
</form>
内容login.php
:
<?php
// Include the launcher file.
require_once('globals.php');
require_once(CORE . 'launcher.php');
// Collect the information sent to us.
$mail = (isset($_POST['email'])) ? $_POST['email'] : '';
$password = (isset($_POST['password'])) ? $_POST['password'] : '';
$LoginError = false;
// AUTHORIZATION STUFF HERE
if ($LoginError) {
header('Status: 200');
header('X-Test: test');
header('Location: index.php');
exit();
}
如您所见,我正在向包含表单的脚本发送自定义标头,以防登录期间出现错误。在 中index.php
,我正在使用headers_list()
,但我发送的标头不在列表中。
是什么原因造成的?我已经php_value "output_buffering" "0"
在.htaccess
文件中尝试过,但没有成功。
更新 在 Chrome 中检查后,浏览器正在接收标头,但在 PHP 中不可用。
提前致谢。