我对所谓的Flash消息有所疑问 它应该在输出后从$ _SESSION数组中清除一个键,但它之前会清除它。我知道因为如果我评论unset()它可以工作(但当然关键不会被清除并且在刷新时仍然存在)简而言之这就是代码:
if (isset($_SESSION['error'])) {
echo('<p style="color:red; margin:0">'. $_SESSION['error'] .'</p>');
unset($_SESSION['error']);
}
因为回声声明不起作用。如果注释未设置回声有效但$ _SESSION键没有被清除,我需要在输出后清除它。 非常奇怪,我在其他文件中编码相同,它完美无瑕。 这里是谜语爱好者的全部代码。
<?php
session_start();
if(isset($_POST['username']) && isset($_POST['password'])){
unset($_SESSION['username']);
if($_POST['password'] =='umsi' && $_POST['username'] == 'chuck') {
$_SESSION['username'] = $_POST['username'];
$_SESSION['success'] = 'Logged in successfuly';
$_SESSION['password'] = $_POST['password'];
header('Location: app.php');
return;
}
else {
$_SESSION['error'] = 'Login incorrect';
header('Location: log.php');
}
}
?>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="main.css">
<title>Log In</title>
</head>
<body>
<div class="log">
<?php
if (isset($_SESSION['error'])) {
echo('<p style="color:red; margin:0">'. $_SESSION['error'] .'</p>');
unset($_SESSION['error']);
}
?>
<h1>Log in</h1>
<form method="post">
<label for="username">Username</label>
<input type="text" name="username">
<label for="password">Password</label>
<input type="password" name="password">
<button type="submit">Submit</button>
</form>
</div>
</body>
</html>
答案 0 :(得分:1)
感谢Lawrence Cherone,我意识到我错过了在其他声明结束时的回归。
else {
$_SESSION['error'] = 'Login incorrect';
exit(header('Location: log.php'));
}
现在有效!!