提供的 PHP 代码遇到了几个阻碍其实现的问题功能:
以下修订后的代码解决了已识别的问题并提供了更安全的成员-仅页面登录系统:
connect_error) { die("Connection failed: " . $conn->connect_error); } // Prepare statement for user authentication $sql_auth = $conn->prepare("SELECT * FROM users WHERE username = ? AND password = ?"); $sql_auth->bind_param("ss", $_POST['uname'], $_POST['pss']); $sql_auth->execute(); $result_auth = $sql_auth->get_result(); // Authenticate user if ($result_auth->num_rows > 0) { $user = $result_auth->fetch_assoc(); $correct = TRUE; } else { $correct = FALSE; } // Generate token if ($correct === TRUE) { $hex = bin2hex(random_bytes(3)); $_SESSION['auth'] = $hex; $_SESSION['logstat'] = TRUE; } // Close connection $conn->close(); ?>
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3