Zombienoid

Cast (37)

  • Jonas Lübeck

    Jonas Lübeck

    Håkan

  • Greg Pack

    Greg Pack

    Narrator (Voice)

  • Jessica Sjögren

    Jessica Sjögren

    Linda

  • Per Hellrönn

    Per Hellrönn

    The Zombie Master

  • Mattias Johansson

    Mattias Johansson

    Evil Henchman 1

  • Finn Palm

    Finn Palm

    Evil Henchman 2

  • Patrick

    Patrick

    Fornicating neighbour

  • Jenny

    Jenny

    Fornicating Neighbour

  • Marcel Gomes

    Marcel Gomes

    Cock Shot Zombie

  • David Nicolosi

    David Nicolosi

    Video game zombie 1

  • Peter Lihnell

    Peter Lihnell

    Video game zombie 2

  • Anna Lyckegård

    Anna Lyckegård

    Zombie

  • Christian Lantz

    Christian Lantz

    Zombie

  • Pontus Karlsson

    Pontus Karlsson

    Zombie

  • Jenny Jungevall

    Jenny Jungevall

    Zombie

  • Nora Jenssen

    Nora Jenssen

    Zombie

  • Erik Ivarsson

    Erik Ivarsson

    Zombie

  • Natalie Helgesson

    Natalie Helgesson

    Zombie

  • Ulrik Hedin

    Ulrik Hedin

    Zombie

  • Joel Hansson

    Joel Hansson

    Zombie

  • Fredrik Hansson

    Fredrik Hansson

    Zombie

  • Johan Fridh

    Johan Fridh

    Zombie

  • Jenne Asp

    Jenne Asp

    Zombie

  • Daniel Arvidsson

    Daniel Arvidsson

    Zombie

  • Malin Appelqvist

    Malin Appelqvist

    Zombie

  • Nasser Alijani

    Nasser Alijani

    Zombie

  • Linn Ahlbom

    Linn Ahlbom

    Zombie

  • Henrik Nilhelm

    Henrik Nilhelm

    Zombie

  • Tobias Olsson

    Tobias Olsson

    Zombie

  • Martin Pourbazargan

    Martin Pourbazargan

    Zombie

  • Linus Pålsson

    Linus Pålsson

    Zombie

  • Carlina Särfjord

    Carlina Särfjord

    Zombie

  • Kajsa Wahlgren

    Kajsa Wahlgren

    Zombie

  • Richard Wetter

    Richard Wetter

    Zombie

  • Hampus Wolcher

    Hampus Wolcher

    Zombie

  • Greigh Johanson

    Greigh Johanson

    Zombie

  • Jonas Wolcher

    Jonas Wolcher

    Zombie

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Zombienoid

Cast (37)

  • Jonas Lübeck

    Jonas Lübeck

    Håkan

  • Greg Pack

    Greg Pack

    Narrator (Voice)

  • Jessica Sjögren

    Jessica Sjögren

    Linda

  • Per Hellrönn

    Per Hellrönn

    The Zombie Master

  • Mattias Johansson

    Mattias Johansson

    Evil Henchman 1

  • Finn Palm

    Finn Palm

    Evil Henchman 2

  • Patrick

    Patrick

    Fornicating neighbour

  • Jenny

    Jenny

    Fornicating Neighbour

  • Marcel Gomes

    Marcel Gomes

    Cock Shot Zombie

  • David Nicolosi

    David Nicolosi

    Video game zombie 1

  • Peter Lihnell

    Peter Lihnell

    Video game zombie 2

  • Anna Lyckegård

    Anna Lyckegård

    Zombie

  • Christian Lantz

    Christian Lantz

    Zombie

  • Pontus Karlsson

    Pontus Karlsson

    Zombie

  • Jenny Jungevall

    Jenny Jungevall

    Zombie

  • Nora Jenssen

    Nora Jenssen

    Zombie

  • Erik Ivarsson

    Erik Ivarsson

    Zombie

  • Natalie Helgesson

    Natalie Helgesson

    Zombie

  • Ulrik Hedin

    Ulrik Hedin

    Zombie

  • Joel Hansson

    Joel Hansson

    Zombie

  • Fredrik Hansson

    Fredrik Hansson

    Zombie

  • Johan Fridh

    Johan Fridh

    Zombie

  • Jenne Asp

    Jenne Asp

    Zombie

  • Daniel Arvidsson

    Daniel Arvidsson

    Zombie

  • Malin Appelqvist

    Malin Appelqvist

    Zombie

  • Nasser Alijani

    Nasser Alijani

    Zombie

  • Linn Ahlbom

    Linn Ahlbom

    Zombie

  • Henrik Nilhelm

    Henrik Nilhelm

    Zombie

  • Tobias Olsson

    Tobias Olsson

    Zombie

  • Martin Pourbazargan

    Martin Pourbazargan

    Zombie

  • Linus Pålsson

    Linus Pålsson

    Zombie

  • Carlina Särfjord

    Carlina Särfjord

    Zombie

  • Kajsa Wahlgren

    Kajsa Wahlgren

    Zombie

  • Richard Wetter

    Richard Wetter

    Zombie

  • Hampus Wolcher

    Hampus Wolcher

    Zombie

  • Greigh Johanson

    Greigh Johanson

    Zombie

  • Jonas Wolcher

    Jonas Wolcher

    Zombie

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Zombienoid

Cast (37)

  • Jonas Lübeck

    Jonas Lübeck

    Håkan

  • Greg Pack

    Greg Pack

    Narrator (Voice)

  • Jessica Sjögren

    Jessica Sjögren

    Linda

  • Per Hellrönn

    Per Hellrönn

    The Zombie Master

  • Mattias Johansson

    Mattias Johansson

    Evil Henchman 1

  • Finn Palm

    Finn Palm

    Evil Henchman 2

  • Patrick

    Patrick

    Fornicating neighbour

  • Jenny

    Jenny

    Fornicating Neighbour

  • Marcel Gomes

    Marcel Gomes

    Cock Shot Zombie

  • David Nicolosi

    David Nicolosi

    Video game zombie 1

  • Peter Lihnell

    Peter Lihnell

    Video game zombie 2

  • Anna Lyckegård

    Anna Lyckegård

    Zombie

  • Christian Lantz

    Christian Lantz

    Zombie

  • Pontus Karlsson

    Pontus Karlsson

    Zombie

  • Jenny Jungevall

    Jenny Jungevall

    Zombie

  • Nora Jenssen

    Nora Jenssen

    Zombie

  • Erik Ivarsson

    Erik Ivarsson

    Zombie

  • Natalie Helgesson

    Natalie Helgesson

    Zombie

  • Ulrik Hedin

    Ulrik Hedin

    Zombie

  • Joel Hansson

    Joel Hansson

    Zombie

  • Fredrik Hansson

    Fredrik Hansson

    Zombie

  • Johan Fridh

    Johan Fridh

    Zombie

  • Jenne Asp

    Jenne Asp

    Zombie

  • Daniel Arvidsson

    Daniel Arvidsson

    Zombie

  • Malin Appelqvist

    Malin Appelqvist

    Zombie

  • Nasser Alijani

    Nasser Alijani

    Zombie

  • Linn Ahlbom

    Linn Ahlbom

    Zombie

  • Henrik Nilhelm

    Henrik Nilhelm

    Zombie

  • Tobias Olsson

    Tobias Olsson

    Zombie

  • Martin Pourbazargan

    Martin Pourbazargan

    Zombie

  • Linus Pålsson

    Linus Pålsson

    Zombie

  • Carlina Särfjord

    Carlina Särfjord

    Zombie

  • Kajsa Wahlgren

    Kajsa Wahlgren

    Zombie

  • Richard Wetter

    Richard Wetter

    Zombie

  • Hampus Wolcher

    Hampus Wolcher

    Zombie

  • Greigh Johanson

    Greigh Johanson

    Zombie

  • Jonas Wolcher

    Jonas Wolcher

    Zombie

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Zombienoid

Cast (37)

  • Jonas Lübeck

    Jonas Lübeck

    Håkan

  • Greg Pack

    Greg Pack

    Narrator (Voice)

  • Jessica Sjögren

    Jessica Sjögren

    Linda

  • Per Hellrönn

    Per Hellrönn

    The Zombie Master

  • Mattias Johansson

    Mattias Johansson

    Evil Henchman 1

  • Finn Palm

    Finn Palm

    Evil Henchman 2

  • Patrick

    Patrick

    Fornicating neighbour

  • Jenny

    Jenny

    Fornicating Neighbour

  • Marcel Gomes

    Marcel Gomes

    Cock Shot Zombie

  • David Nicolosi

    David Nicolosi

    Video game zombie 1

  • Peter Lihnell

    Peter Lihnell

    Video game zombie 2

  • Anna Lyckegård

    Anna Lyckegård

    Zombie

  • Christian Lantz

    Christian Lantz

    Zombie

  • Pontus Karlsson

    Pontus Karlsson

    Zombie

  • Jenny Jungevall

    Jenny Jungevall

    Zombie

  • Nora Jenssen

    Nora Jenssen

    Zombie

  • Erik Ivarsson

    Erik Ivarsson

    Zombie

  • Natalie Helgesson

    Natalie Helgesson

    Zombie

  • Ulrik Hedin

    Ulrik Hedin

    Zombie

  • Joel Hansson

    Joel Hansson

    Zombie

  • Fredrik Hansson

    Fredrik Hansson

    Zombie

  • Johan Fridh

    Johan Fridh

    Zombie

  • Jenne Asp

    Jenne Asp

    Zombie

  • Daniel Arvidsson

    Daniel Arvidsson

    Zombie

  • Malin Appelqvist

    Malin Appelqvist

    Zombie

  • Nasser Alijani

    Nasser Alijani

    Zombie

  • Linn Ahlbom

    Linn Ahlbom

    Zombie

  • Henrik Nilhelm

    Henrik Nilhelm

    Zombie

  • Tobias Olsson

    Tobias Olsson

    Zombie

  • Martin Pourbazargan

    Martin Pourbazargan

    Zombie

  • Linus Pålsson

    Linus Pålsson

    Zombie

  • Carlina Särfjord

    Carlina Särfjord

    Zombie

  • Kajsa Wahlgren

    Kajsa Wahlgren

    Zombie

  • Richard Wetter

    Richard Wetter

    Zombie

  • Hampus Wolcher

    Hampus Wolcher

    Zombie

  • Greigh Johanson

    Greigh Johanson

    Zombie

  • Jonas Wolcher

    Jonas Wolcher

    Zombie

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Zombienoid

Cast (37)

  • Jonas Lübeck

    Jonas Lübeck

    Håkan

  • Greg Pack

    Greg Pack

    Narrator (Voice)

  • Jessica Sjögren

    Jessica Sjögren

    Linda

  • Per Hellrönn

    Per Hellrönn

    The Zombie Master

  • Mattias Johansson

    Mattias Johansson

    Evil Henchman 1

  • Finn Palm

    Finn Palm

    Evil Henchman 2

  • Patrick

    Patrick

    Fornicating neighbour

  • Jenny

    Jenny

    Fornicating Neighbour

  • Marcel Gomes

    Marcel Gomes

    Cock Shot Zombie

  • David Nicolosi

    David Nicolosi

    Video game zombie 1

  • Peter Lihnell

    Peter Lihnell

    Video game zombie 2

  • Anna Lyckegård

    Anna Lyckegård

    Zombie

  • Christian Lantz

    Christian Lantz

    Zombie

  • Pontus Karlsson

    Pontus Karlsson

    Zombie

  • Jenny Jungevall

    Jenny Jungevall

    Zombie

  • Nora Jenssen

    Nora Jenssen

    Zombie

  • Erik Ivarsson

    Erik Ivarsson

    Zombie

  • Natalie Helgesson

    Natalie Helgesson

    Zombie

  • Ulrik Hedin

    Ulrik Hedin

    Zombie

  • Joel Hansson

    Joel Hansson

    Zombie

  • Fredrik Hansson

    Fredrik Hansson

    Zombie

  • Johan Fridh

    Johan Fridh

    Zombie

  • Jenne Asp

    Jenne Asp

    Zombie

  • Daniel Arvidsson

    Daniel Arvidsson

    Zombie

  • Malin Appelqvist

    Malin Appelqvist

    Zombie

  • Nasser Alijani

    Nasser Alijani

    Zombie

  • Linn Ahlbom

    Linn Ahlbom

    Zombie

  • Henrik Nilhelm

    Henrik Nilhelm

    Zombie

  • Tobias Olsson

    Tobias Olsson

    Zombie

  • Martin Pourbazargan

    Martin Pourbazargan

    Zombie

  • Linus Pålsson

    Linus Pålsson

    Zombie

  • Carlina Särfjord

    Carlina Särfjord

    Zombie

  • Kajsa Wahlgren

    Kajsa Wahlgren

    Zombie

  • Richard Wetter

    Richard Wetter

    Zombie

  • Hampus Wolcher

    Hampus Wolcher

    Zombie

  • Greigh Johanson

    Greigh Johanson

    Zombie

  • Jonas Wolcher

    Jonas Wolcher

    Zombie

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Zombienoid

Cast (37)

  • Jonas Lübeck

    Jonas Lübeck

    Håkan

  • Greg Pack

    Greg Pack

    Narrator (Voice)

  • Jessica Sjögren

    Jessica Sjögren

    Linda

  • Per Hellrönn

    Per Hellrönn

    The Zombie Master

  • Mattias Johansson

    Mattias Johansson

    Evil Henchman 1

  • Finn Palm

    Finn Palm

    Evil Henchman 2

  • Patrick

    Patrick

    Fornicating neighbour

  • Jenny

    Jenny

    Fornicating Neighbour

  • Marcel Gomes

    Marcel Gomes

    Cock Shot Zombie

  • David Nicolosi

    David Nicolosi

    Video game zombie 1

  • Peter Lihnell

    Peter Lihnell

    Video game zombie 2

  • Anna Lyckegård

    Anna Lyckegård

    Zombie

  • Christian Lantz

    Christian Lantz

    Zombie

  • Pontus Karlsson

    Pontus Karlsson

    Zombie

  • Jenny Jungevall

    Jenny Jungevall

    Zombie

  • Nora Jenssen

    Nora Jenssen

    Zombie

  • Erik Ivarsson

    Erik Ivarsson

    Zombie

  • Natalie Helgesson

    Natalie Helgesson

    Zombie

  • Ulrik Hedin

    Ulrik Hedin

    Zombie

  • Joel Hansson

    Joel Hansson

    Zombie

  • Fredrik Hansson

    Fredrik Hansson

    Zombie

  • Johan Fridh

    Johan Fridh

    Zombie

  • Jenne Asp

    Jenne Asp

    Zombie

  • Daniel Arvidsson

    Daniel Arvidsson

    Zombie

  • Malin Appelqvist

    Malin Appelqvist

    Zombie

  • Nasser Alijani

    Nasser Alijani

    Zombie

  • Linn Ahlbom

    Linn Ahlbom

    Zombie

  • Henrik Nilhelm

    Henrik Nilhelm

    Zombie

  • Tobias Olsson

    Tobias Olsson

    Zombie

  • Martin Pourbazargan

    Martin Pourbazargan

    Zombie

  • Linus Pålsson

    Linus Pålsson

    Zombie

  • Carlina Särfjord

    Carlina Särfjord

    Zombie

  • Kajsa Wahlgren

    Kajsa Wahlgren

    Zombie

  • Richard Wetter

    Richard Wetter

    Zombie

  • Hampus Wolcher

    Hampus Wolcher

    Zombie

  • Greigh Johanson

    Greigh Johanson

    Zombie

  • Jonas Wolcher

    Jonas Wolcher

    Zombie

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Zombienoid

Cast (37)

  • Jonas Lübeck

    Jonas Lübeck

    Håkan

  • Greg Pack

    Greg Pack

    Narrator (Voice)

  • Jessica Sjögren

    Jessica Sjögren

    Linda

  • Per Hellrönn

    Per Hellrönn

    The Zombie Master

  • Mattias Johansson

    Mattias Johansson

    Evil Henchman 1

  • Finn Palm

    Finn Palm

    Evil Henchman 2

  • Patrick

    Patrick

    Fornicating neighbour

  • Jenny

    Jenny

    Fornicating Neighbour

  • Marcel Gomes

    Marcel Gomes

    Cock Shot Zombie

  • David Nicolosi

    David Nicolosi

    Video game zombie 1

  • Peter Lihnell

    Peter Lihnell

    Video game zombie 2

  • Anna Lyckegård

    Anna Lyckegård

    Zombie

  • Christian Lantz

    Christian Lantz

    Zombie

  • Pontus Karlsson

    Pontus Karlsson

    Zombie

  • Jenny Jungevall

    Jenny Jungevall

    Zombie

  • Nora Jenssen

    Nora Jenssen

    Zombie

  • Erik Ivarsson

    Erik Ivarsson

    Zombie

  • Natalie Helgesson

    Natalie Helgesson

    Zombie

  • Ulrik Hedin

    Ulrik Hedin

    Zombie

  • Joel Hansson

    Joel Hansson

    Zombie

  • Fredrik Hansson

    Fredrik Hansson

    Zombie

  • Johan Fridh

    Johan Fridh

    Zombie

  • Jenne Asp

    Jenne Asp

    Zombie

  • Daniel Arvidsson

    Daniel Arvidsson

    Zombie

  • Malin Appelqvist

    Malin Appelqvist

    Zombie

  • Nasser Alijani

    Nasser Alijani

    Zombie

  • Linn Ahlbom

    Linn Ahlbom

    Zombie

  • Henrik Nilhelm

    Henrik Nilhelm

    Zombie

  • Tobias Olsson

    Tobias Olsson

    Zombie

  • Martin Pourbazargan

    Martin Pourbazargan

    Zombie

  • Linus Pålsson

    Linus Pålsson

    Zombie

  • Carlina Särfjord

    Carlina Särfjord

    Zombie

  • Kajsa Wahlgren

    Kajsa Wahlgren

    Zombie

  • Richard Wetter

    Richard Wetter

    Zombie

  • Hampus Wolcher

    Hampus Wolcher

    Zombie

  • Greigh Johanson

    Greigh Johanson

    Zombie

  • Jonas Wolcher

    Jonas Wolcher

    Zombie