例如,如果我在运行 PHP 时密码/用户名不匹配,我想回到我的主登录页面,该页面全是 HTML/JS。我希望能够访问我的主登录 html 页面并使包含错误消息的 div 可见。
这是帮助示例的代码片段。一切正常,我只是不喜欢它我所能做的就是加载索引页面而不告诉我的用户出了什么问题。我一直在做一些谷歌搜索,但我没有设法让它正确。
<?php //this is in a separate file "checklogin.php"
.
.
.
if ($count == 1) {
session_start();
$_SESSION['loggedin'] = true;
header('Location: loggedin.php');
}
else {
header('Location: index.php');
}
.
.
.
?>
<html> //separate file "index.php"
<body>
.
.
.
<div id = "nomatch" name = "nomatch" style = "display:none">
<p>
username and password don't match
</p>
</div>
.
.
.
</body>
</html>