$_POST['login'] && $pass == $_POST['password'])
{
$_SESSION['is_admin'] = $users;
header("Location: ../index.php");
exit;
}
else {
$_SESSION['error_msg'] = 'Неверный логин или пароль!';
header("Location: login.php");
}
<?php
if($_SESSION['error_msg']){
echo '<p class="error_msg">' . $_SESSION['error_msg'] . '</p>';
unset($_SESSION['error_msg']);
}
?>
Туть пишут https://github.com/plasticbrain/PhpFlashMessages
Обсуждают сегодня