How can a user login be effectively implemented when the input is split across multiple fields in a database?

When a user login is split across multiple fields in a database, such as username and password, the implementation can be effectively done by querying the database with the input values from each field and checking if a matching record exists. This can be achieved by using a SQL SELECT statement with a WHERE clause that checks for both the username and password fields. The PHP code snippet below demonstrates how to implement this approach.

// Assuming $username and $password are the input values from the user
$username = $_POST['username'];
$password = $_POST['password'];

// Connect to the database
$conn = new mysqli($servername, $username, $password, $dbname);

// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
}

// Query the database to check if a matching record exists
$sql = "SELECT * FROM users WHERE username = '$username' AND password = '$password'";
$result = $conn->query($sql);

if ($result->num_rows > 0) {
    // User authentication successful
    echo "Login successful!";
} else {
    // User authentication failed
    echo "Invalid username or password.";
}

// Close the database connection
$conn->close();