$stmt->fetch();
    if (password_verify($password, $hashed_password)) {
      // Kullanıcı doğrulandı, yönlendir
      session_start();
      $_SESSION["email"] = $email;
      header("Location: dashboard.php");
      exit;
    }
Şu kodda sorun var. password_verify fonksiyonu ne yapıyor bilmek lazım. $hashed_password değişkeni nereden geliyor