我正在创建一个管理面板,我几乎完成了,但 localhost 没有加载 [关闭]

i am creating an admin panel and i am almost done but the localhost is not loading [closed]

提问人:Sowad223 提问时间:11/17/2023 最后编辑:ADysonSowad223 更新时间:11/17/2023 访问量:38

问:


编辑问题以包括所需的行为、特定问题或错误以及重现问题所需的最短代码。这将帮助其他人回答这个问题。

3天前关闭。

这篇文章在3天前被编辑并提交审核,未能重新打开帖子:

原始关闭原因未解决

页面未正确重定向。它向我显示此错误:

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>

我认为我在会话处理中出错或有无限循环,但我不确定是否是这种情况。

PHP的

评论

1赞 ADyson 11/17/2023
I think I have an error in session handling or have an infinite loop....那么,请在您的问题中包含一个最小的可重现示例,一旦您完成了代码并将其简化为重要部分。我们不能仅仅通过查看HTML表单来帮助您解决这种事情,这本身不可能是原因。

答: 暂无答案