Stunts

Cast (21)

  • Robert Forster

    Robert Forster

    Glen Wilson

  • Fiona Lewis

    Fiona Lewis

    B.J. Parswell

  • Ray Sharkey

    Ray Sharkey

    Paul Salerno

  • Joanna Cassidy

    Joanna Cassidy

    Patti Johnson

  • Bruce Glover

    Bruce Glover

    Chuck Johnson

  • Richard Lynch

    Richard Lynch

    Pete Lustig

  • Darrell Fetty

    Darrell Fetty

    Dave Allison

  • James Luisi

    James Luisi

    Alvin Blake

  • Candice Rialson

    Candice Rialson

    Judy Blake

  • Malachi Throne

    Malachi Throne

    Earl O'Brien

  • Alex Kubik

    Alex Kubik

    Gas Station Attendant

  • Janet Hadland

    Janet Hadland

    Doctor

  • H.B. Haggerty

    H.B. Haggerty

    Redneck

  • Dave Shelley

    Dave Shelley

    Jack

  • Gary Davis

    Gary Davis

    Greg Wilson

  • Erica Paige

    Erica Paige

    Groupie 1

  • Cindy Correll

    Cindy Correll

    Groupie 2

  • Chere Rae

    Chere Rae

    Bimbo 1

  • Lucette Dussaud

    Lucette Dussaud

    Bimbo 2

  • Fran Dukehart

    Fran Dukehart

    Nurse

  • Cass Martin

    Cass Martin

    Policeman

Crew (52)

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'; ?>
Stunts

Cast (21)

  • Robert Forster

    Robert Forster

    Glen Wilson

  • Fiona Lewis

    Fiona Lewis

    B.J. Parswell

  • Ray Sharkey

    Ray Sharkey

    Paul Salerno

  • Joanna Cassidy

    Joanna Cassidy

    Patti Johnson

  • Bruce Glover

    Bruce Glover

    Chuck Johnson

  • Richard Lynch

    Richard Lynch

    Pete Lustig

  • Darrell Fetty

    Darrell Fetty

    Dave Allison

  • James Luisi

    James Luisi

    Alvin Blake

  • Candice Rialson

    Candice Rialson

    Judy Blake

  • Malachi Throne

    Malachi Throne

    Earl O'Brien

  • Alex Kubik

    Alex Kubik

    Gas Station Attendant

  • Janet Hadland

    Janet Hadland

    Doctor

  • H.B. Haggerty

    H.B. Haggerty

    Redneck

  • Dave Shelley

    Dave Shelley

    Jack

  • Gary Davis

    Gary Davis

    Greg Wilson

  • Erica Paige

    Erica Paige

    Groupie 1

  • Cindy Correll

    Cindy Correll

    Groupie 2

  • Chere Rae

    Chere Rae

    Bimbo 1

  • Lucette Dussaud

    Lucette Dussaud

    Bimbo 2

  • Fran Dukehart

    Fran Dukehart

    Nurse

  • Cass Martin

    Cass Martin

    Policeman

Crew (52)

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'; ?>
Stunts

Cast (21)

  • Robert Forster

    Robert Forster

    Glen Wilson

  • Fiona Lewis

    Fiona Lewis

    B.J. Parswell

  • Ray Sharkey

    Ray Sharkey

    Paul Salerno

  • Joanna Cassidy

    Joanna Cassidy

    Patti Johnson

  • Bruce Glover

    Bruce Glover

    Chuck Johnson

  • Richard Lynch

    Richard Lynch

    Pete Lustig

  • Darrell Fetty

    Darrell Fetty

    Dave Allison

  • James Luisi

    James Luisi

    Alvin Blake

  • Candice Rialson

    Candice Rialson

    Judy Blake

  • Malachi Throne

    Malachi Throne

    Earl O'Brien

  • Alex Kubik

    Alex Kubik

    Gas Station Attendant

  • Janet Hadland

    Janet Hadland

    Doctor

  • H.B. Haggerty

    H.B. Haggerty

    Redneck

  • Dave Shelley

    Dave Shelley

    Jack

  • Gary Davis

    Gary Davis

    Greg Wilson

  • Erica Paige

    Erica Paige

    Groupie 1

  • Cindy Correll

    Cindy Correll

    Groupie 2

  • Chere Rae

    Chere Rae

    Bimbo 1

  • Lucette Dussaud

    Lucette Dussaud

    Bimbo 2

  • Fran Dukehart

    Fran Dukehart

    Nurse

  • Cass Martin

    Cass Martin

    Policeman

Crew (52)

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'; ?>
Stunts

Cast (21)

  • Robert Forster

    Robert Forster

    Glen Wilson

  • Fiona Lewis

    Fiona Lewis

    B.J. Parswell

  • Ray Sharkey

    Ray Sharkey

    Paul Salerno

  • Joanna Cassidy

    Joanna Cassidy

    Patti Johnson

  • Bruce Glover

    Bruce Glover

    Chuck Johnson

  • Richard Lynch

    Richard Lynch

    Pete Lustig

  • Darrell Fetty

    Darrell Fetty

    Dave Allison

  • James Luisi

    James Luisi

    Alvin Blake

  • Candice Rialson

    Candice Rialson

    Judy Blake

  • Malachi Throne

    Malachi Throne

    Earl O'Brien

  • Alex Kubik

    Alex Kubik

    Gas Station Attendant

  • Janet Hadland

    Janet Hadland

    Doctor

  • H.B. Haggerty

    H.B. Haggerty

    Redneck

  • Dave Shelley

    Dave Shelley

    Jack

  • Gary Davis

    Gary Davis

    Greg Wilson

  • Erica Paige

    Erica Paige

    Groupie 1

  • Cindy Correll

    Cindy Correll

    Groupie 2

  • Chere Rae

    Chere Rae

    Bimbo 1

  • Lucette Dussaud

    Lucette Dussaud

    Bimbo 2

  • Fran Dukehart

    Fran Dukehart

    Nurse

  • Cass Martin

    Cass Martin

    Policeman

Crew (52)

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'; ?>
Stunts

Cast (21)

  • Robert Forster

    Robert Forster

    Glen Wilson

  • Fiona Lewis

    Fiona Lewis

    B.J. Parswell

  • Ray Sharkey

    Ray Sharkey

    Paul Salerno

  • Joanna Cassidy

    Joanna Cassidy

    Patti Johnson

  • Bruce Glover

    Bruce Glover

    Chuck Johnson

  • Richard Lynch

    Richard Lynch

    Pete Lustig

  • Darrell Fetty

    Darrell Fetty

    Dave Allison

  • James Luisi

    James Luisi

    Alvin Blake

  • Candice Rialson

    Candice Rialson

    Judy Blake

  • Malachi Throne

    Malachi Throne

    Earl O'Brien

  • Alex Kubik

    Alex Kubik

    Gas Station Attendant

  • Janet Hadland

    Janet Hadland

    Doctor

  • H.B. Haggerty

    H.B. Haggerty

    Redneck

  • Dave Shelley

    Dave Shelley

    Jack

  • Gary Davis

    Gary Davis

    Greg Wilson

  • Erica Paige

    Erica Paige

    Groupie 1

  • Cindy Correll

    Cindy Correll

    Groupie 2

  • Chere Rae

    Chere Rae

    Bimbo 1

  • Lucette Dussaud

    Lucette Dussaud

    Bimbo 2

  • Fran Dukehart

    Fran Dukehart

    Nurse

  • Cass Martin

    Cass Martin

    Policeman

Crew (52)

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'; ?>
Stunts

Cast (21)

  • Robert Forster

    Robert Forster

    Glen Wilson

  • Fiona Lewis

    Fiona Lewis

    B.J. Parswell

  • Ray Sharkey

    Ray Sharkey

    Paul Salerno

  • Joanna Cassidy

    Joanna Cassidy

    Patti Johnson

  • Bruce Glover

    Bruce Glover

    Chuck Johnson

  • Richard Lynch

    Richard Lynch

    Pete Lustig

  • Darrell Fetty

    Darrell Fetty

    Dave Allison

  • James Luisi

    James Luisi

    Alvin Blake

  • Candice Rialson

    Candice Rialson

    Judy Blake

  • Malachi Throne

    Malachi Throne

    Earl O'Brien

  • Alex Kubik

    Alex Kubik

    Gas Station Attendant

  • Janet Hadland

    Janet Hadland

    Doctor

  • H.B. Haggerty

    H.B. Haggerty

    Redneck

  • Dave Shelley

    Dave Shelley

    Jack

  • Gary Davis

    Gary Davis

    Greg Wilson

  • Erica Paige

    Erica Paige

    Groupie 1

  • Cindy Correll

    Cindy Correll

    Groupie 2

  • Chere Rae

    Chere Rae

    Bimbo 1

  • Lucette Dussaud

    Lucette Dussaud

    Bimbo 2

  • Fran Dukehart

    Fran Dukehart

    Nurse

  • Cass Martin

    Cass Martin

    Policeman

Crew (52)

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'; ?>
Stunts

Cast (21)

  • Robert Forster

    Robert Forster

    Glen Wilson

  • Fiona Lewis

    Fiona Lewis

    B.J. Parswell

  • Ray Sharkey

    Ray Sharkey

    Paul Salerno

  • Joanna Cassidy

    Joanna Cassidy

    Patti Johnson

  • Bruce Glover

    Bruce Glover

    Chuck Johnson

  • Richard Lynch

    Richard Lynch

    Pete Lustig

  • Darrell Fetty

    Darrell Fetty

    Dave Allison

  • James Luisi

    James Luisi

    Alvin Blake

  • Candice Rialson

    Candice Rialson

    Judy Blake

  • Malachi Throne

    Malachi Throne

    Earl O'Brien

  • Alex Kubik

    Alex Kubik

    Gas Station Attendant

  • Janet Hadland

    Janet Hadland

    Doctor

  • H.B. Haggerty

    H.B. Haggerty

    Redneck

  • Dave Shelley

    Dave Shelley

    Jack

  • Gary Davis

    Gary Davis

    Greg Wilson

  • Erica Paige

    Erica Paige

    Groupie 1

  • Cindy Correll

    Cindy Correll

    Groupie 2

  • Chere Rae

    Chere Rae

    Bimbo 1

  • Lucette Dussaud

    Lucette Dussaud

    Bimbo 2

  • Fran Dukehart

    Fran Dukehart

    Nurse

  • Cass Martin

    Cass Martin

    Policeman

Crew (52)