提问人:Sowad223 提问时间:11/17/2023 最后编辑:ADysonSowad223 更新时间:11/17/2023 访问量:38
我正在创建一个管理面板,我几乎完成了,但 localhost 没有加载 [关闭]
i am creating an admin panel and i am almost done but the localhost is not loading [closed]
问:
页面未正确重定向。它向我显示此错误:
Firefox 检测到服务器正在重定向请求 这个地址永远不会完成。 此问题有时可能是由于禁用或拒绝 接受 Cookie。
<!DOCTYPE html>
<html>
<head>
<title>Admin Panel Login</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<?php include("login.php"); ?>
<form action="login.php" method="post">
<h2>Login</h2>
<label for="username">Username:</label>
<input type="text" name="username" required>
<label for="password">Password:</label>
<input type="password" name="password" required>
<input type="submit" value="Login">
</form>
</body>
</html>
我认为我在会话处理中出错或有无限循环,但我不确定是否是这种情况。
答: 暂无答案
评论
I think I have an error in session handling or have an infinite loop
....那么,请在您的问题中包含一个最小的可重现示例,一旦您完成了代码并将其简化为重要部分。我们不能仅仅通过查看HTML表单来帮助您解决这种事情,这本身不可能是原因。