prepare($query); $stmt->bind_param("s", $email); $stmt->execute(); $stmt->bind_result($user_id, $user_username, $user_password, $user_isAdmin); // Fetch the result if ($stmt->fetch() && password_verify($password, $user_password)) { $_SESSION['user_id'] = $user_id; // Redirect to the main domain after successful login header('Location: http://watch.twip-network.org'); exit(); } else { echo "Invalid email or password."; } // Close the statement $stmt->close(); } include "pages/login.html"; ?>