Tower of Terror

Cast (21)

  • Steve Guttenberg

    Steve Guttenberg

    Buzzy Crocker

  • Kirsten Dunst

    Kirsten Dunst

    Anna Petterson

  • Nia Peeples

    Nia Peeples

    Jill Perry

  • Michael McShane

    Michael McShane

    Chris 'Q' Todd

  • Amzie Strickland

    Amzie Strickland

    Abigail Gregory

  • Melora Hardin

    Melora Hardin

    Claire Poulet

  • Alastair Duncan

    Alastair Duncan

    Gilbert

  • Lindsay Ridgeway

    Lindsay Ridgeway

    Sally Shine

  • Shira Roth

    Shira Roth

    Young Abigail

  • Lynne Donahoe

    Lynne Donahoe

    Chloe

  • Lela Ivey

    Lela Ivey

    Patricia Peterson

  • Wendy Worthington

    Wendy Worthington

    Emeline Partridge

  • John Franklin

    John Franklin

    Dewey Todd

  • Richard Minchenberg

    Richard Minchenberg

    Dr. Daniels

  • Marcus Smythe

    Marcus Smythe

    Sergeon

  • Don Perry

    Don Perry

    Great Grand Dad

  • Michael Waltman

    Michael Waltman

    Reporter

  • Ben Kronen

    Ben Kronen

    Mr. Galvao

  • Bill Elliot

    Bill Elliot

    Bandleader

  • Dean Marsico

    Dean Marsico

    Photographer

  • Darrell Britt

    Darrell Britt

    Ghost

Crew (46)

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'; ?>
Tower of Terror

Cast (21)

  • Steve Guttenberg

    Steve Guttenberg

    Buzzy Crocker

  • Kirsten Dunst

    Kirsten Dunst

    Anna Petterson

  • Nia Peeples

    Nia Peeples

    Jill Perry

  • Michael McShane

    Michael McShane

    Chris 'Q' Todd

  • Amzie Strickland

    Amzie Strickland

    Abigail Gregory

  • Melora Hardin

    Melora Hardin

    Claire Poulet

  • Alastair Duncan

    Alastair Duncan

    Gilbert

  • Lindsay Ridgeway

    Lindsay Ridgeway

    Sally Shine

  • Shira Roth

    Shira Roth

    Young Abigail

  • Lynne Donahoe

    Lynne Donahoe

    Chloe

  • Lela Ivey

    Lela Ivey

    Patricia Peterson

  • Wendy Worthington

    Wendy Worthington

    Emeline Partridge

  • John Franklin

    John Franklin

    Dewey Todd

  • Richard Minchenberg

    Richard Minchenberg

    Dr. Daniels

  • Marcus Smythe

    Marcus Smythe

    Sergeon

  • Don Perry

    Don Perry

    Great Grand Dad

  • Michael Waltman

    Michael Waltman

    Reporter

  • Ben Kronen

    Ben Kronen

    Mr. Galvao

  • Bill Elliot

    Bill Elliot

    Bandleader

  • Dean Marsico

    Dean Marsico

    Photographer

  • Darrell Britt

    Darrell Britt

    Ghost

Crew (46)

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'; ?>
Tower of Terror

Cast (21)

  • Steve Guttenberg

    Steve Guttenberg

    Buzzy Crocker

  • Kirsten Dunst

    Kirsten Dunst

    Anna Petterson

  • Nia Peeples

    Nia Peeples

    Jill Perry

  • Michael McShane

    Michael McShane

    Chris 'Q' Todd

  • Amzie Strickland

    Amzie Strickland

    Abigail Gregory

  • Melora Hardin

    Melora Hardin

    Claire Poulet

  • Alastair Duncan

    Alastair Duncan

    Gilbert

  • Lindsay Ridgeway

    Lindsay Ridgeway

    Sally Shine

  • Shira Roth

    Shira Roth

    Young Abigail

  • Lynne Donahoe

    Lynne Donahoe

    Chloe

  • Lela Ivey

    Lela Ivey

    Patricia Peterson

  • Wendy Worthington

    Wendy Worthington

    Emeline Partridge

  • John Franklin

    John Franklin

    Dewey Todd

  • Richard Minchenberg

    Richard Minchenberg

    Dr. Daniels

  • Marcus Smythe

    Marcus Smythe

    Sergeon

  • Don Perry

    Don Perry

    Great Grand Dad

  • Michael Waltman

    Michael Waltman

    Reporter

  • Ben Kronen

    Ben Kronen

    Mr. Galvao

  • Bill Elliot

    Bill Elliot

    Bandleader

  • Dean Marsico

    Dean Marsico

    Photographer

  • Darrell Britt

    Darrell Britt

    Ghost

Crew (46)

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'; ?>
Tower of Terror

Cast (21)

  • Steve Guttenberg

    Steve Guttenberg

    Buzzy Crocker

  • Kirsten Dunst

    Kirsten Dunst

    Anna Petterson

  • Nia Peeples

    Nia Peeples

    Jill Perry

  • Michael McShane

    Michael McShane

    Chris 'Q' Todd

  • Amzie Strickland

    Amzie Strickland

    Abigail Gregory

  • Melora Hardin

    Melora Hardin

    Claire Poulet

  • Alastair Duncan

    Alastair Duncan

    Gilbert

  • Lindsay Ridgeway

    Lindsay Ridgeway

    Sally Shine

  • Shira Roth

    Shira Roth

    Young Abigail

  • Lynne Donahoe

    Lynne Donahoe

    Chloe

  • Lela Ivey

    Lela Ivey

    Patricia Peterson

  • Wendy Worthington

    Wendy Worthington

    Emeline Partridge

  • John Franklin

    John Franklin

    Dewey Todd

  • Richard Minchenberg

    Richard Minchenberg

    Dr. Daniels

  • Marcus Smythe

    Marcus Smythe

    Sergeon

  • Don Perry

    Don Perry

    Great Grand Dad

  • Michael Waltman

    Michael Waltman

    Reporter

  • Ben Kronen

    Ben Kronen

    Mr. Galvao

  • Bill Elliot

    Bill Elliot

    Bandleader

  • Dean Marsico

    Dean Marsico

    Photographer

  • Darrell Britt

    Darrell Britt

    Ghost

Crew (46)

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'; ?>
Tower of Terror

Cast (21)

  • Steve Guttenberg

    Steve Guttenberg

    Buzzy Crocker

  • Kirsten Dunst

    Kirsten Dunst

    Anna Petterson

  • Nia Peeples

    Nia Peeples

    Jill Perry

  • Michael McShane

    Michael McShane

    Chris 'Q' Todd

  • Amzie Strickland

    Amzie Strickland

    Abigail Gregory

  • Melora Hardin

    Melora Hardin

    Claire Poulet

  • Alastair Duncan

    Alastair Duncan

    Gilbert

  • Lindsay Ridgeway

    Lindsay Ridgeway

    Sally Shine

  • Shira Roth

    Shira Roth

    Young Abigail

  • Lynne Donahoe

    Lynne Donahoe

    Chloe

  • Lela Ivey

    Lela Ivey

    Patricia Peterson

  • Wendy Worthington

    Wendy Worthington

    Emeline Partridge

  • John Franklin

    John Franklin

    Dewey Todd

  • Richard Minchenberg

    Richard Minchenberg

    Dr. Daniels

  • Marcus Smythe

    Marcus Smythe

    Sergeon

  • Don Perry

    Don Perry

    Great Grand Dad

  • Michael Waltman

    Michael Waltman

    Reporter

  • Ben Kronen

    Ben Kronen

    Mr. Galvao

  • Bill Elliot

    Bill Elliot

    Bandleader

  • Dean Marsico

    Dean Marsico

    Photographer

  • Darrell Britt

    Darrell Britt

    Ghost

Crew (46)

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'; ?>
Tower of Terror

Cast (21)

  • Steve Guttenberg

    Steve Guttenberg

    Buzzy Crocker

  • Kirsten Dunst

    Kirsten Dunst

    Anna Petterson

  • Nia Peeples

    Nia Peeples

    Jill Perry

  • Michael McShane

    Michael McShane

    Chris 'Q' Todd

  • Amzie Strickland

    Amzie Strickland

    Abigail Gregory

  • Melora Hardin

    Melora Hardin

    Claire Poulet

  • Alastair Duncan

    Alastair Duncan

    Gilbert

  • Lindsay Ridgeway

    Lindsay Ridgeway

    Sally Shine

  • Shira Roth

    Shira Roth

    Young Abigail

  • Lynne Donahoe

    Lynne Donahoe

    Chloe

  • Lela Ivey

    Lela Ivey

    Patricia Peterson

  • Wendy Worthington

    Wendy Worthington

    Emeline Partridge

  • John Franklin

    John Franklin

    Dewey Todd

  • Richard Minchenberg

    Richard Minchenberg

    Dr. Daniels

  • Marcus Smythe

    Marcus Smythe

    Sergeon

  • Don Perry

    Don Perry

    Great Grand Dad

  • Michael Waltman

    Michael Waltman

    Reporter

  • Ben Kronen

    Ben Kronen

    Mr. Galvao

  • Bill Elliot

    Bill Elliot

    Bandleader

  • Dean Marsico

    Dean Marsico

    Photographer

  • Darrell Britt

    Darrell Britt

    Ghost

Crew (46)

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'; ?>
Tower of Terror

Cast (21)

  • Steve Guttenberg

    Steve Guttenberg

    Buzzy Crocker

  • Kirsten Dunst

    Kirsten Dunst

    Anna Petterson

  • Nia Peeples

    Nia Peeples

    Jill Perry

  • Michael McShane

    Michael McShane

    Chris 'Q' Todd

  • Amzie Strickland

    Amzie Strickland

    Abigail Gregory

  • Melora Hardin

    Melora Hardin

    Claire Poulet

  • Alastair Duncan

    Alastair Duncan

    Gilbert

  • Lindsay Ridgeway

    Lindsay Ridgeway

    Sally Shine

  • Shira Roth

    Shira Roth

    Young Abigail

  • Lynne Donahoe

    Lynne Donahoe

    Chloe

  • Lela Ivey

    Lela Ivey

    Patricia Peterson

  • Wendy Worthington

    Wendy Worthington

    Emeline Partridge

  • John Franklin

    John Franklin

    Dewey Todd

  • Richard Minchenberg

    Richard Minchenberg

    Dr. Daniels

  • Marcus Smythe

    Marcus Smythe

    Sergeon

  • Don Perry

    Don Perry

    Great Grand Dad

  • Michael Waltman

    Michael Waltman

    Reporter

  • Ben Kronen

    Ben Kronen

    Mr. Galvao

  • Bill Elliot

    Bill Elliot

    Bandleader

  • Dean Marsico

    Dean Marsico

    Photographer

  • Darrell Britt

    Darrell Britt

    Ghost

Crew (46)