Over-Exposed

Cast (19)

  • Cleo Moore

    Cleo Moore

    Lily Krenshka / Lila Crane

  • Richard Crenna

    Richard Crenna

    Russell Bassett

  • Isobel Elsom

    Isobel Elsom

    Mrs. Payton Grange

  • Raymond Greenleaf

    Raymond Greenleaf

    Max West, Photographer

  • Constance Towers

    Constance Towers

    Shirley Thomas

  • James O'Rear

    James O'Rear

    Roy Carver

  • Donald Randolph

    Donald Randolph

    Coco Fields

  • Dayton Lummis

    Dayton Lummis

    Horace Sutherland

  • Jack Albertson

    Jack Albertson

    Les Bauer (uncredited)

  • Edna Holland

    Edna Holland

    Mrs. Gulick (as Edna M. Holland)

  • Dick Crockett

    Dick Crockett

    Jerry

  • Eddie Parker

    Eddie Parker

    Matt (as Edwin Parker)

  • Geraldine Hall

    Geraldine Hall

    Martha

  • Voltaire Perkins

    Voltaire Perkins

    Judge Evans

  • Joan Miller

    Joan Miller

    Fran

  • Helen Eby-Rock

    Helen Eby-Rock

    Mrs. Grannigan (as Helen Eby Rock)

  • Frank Mitchell

    Frank Mitchell

    Steve the Bartender

  • Norma Brooks

    Norma Brooks

    Doris

  • Robert B. Williams

    Robert B. Williams

    Police Sergeant (as Robert B. Williams)

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'; ?>
Over-Exposed

Cast (19)

  • Cleo Moore

    Cleo Moore

    Lily Krenshka / Lila Crane

  • Richard Crenna

    Richard Crenna

    Russell Bassett

  • Isobel Elsom

    Isobel Elsom

    Mrs. Payton Grange

  • Raymond Greenleaf

    Raymond Greenleaf

    Max West, Photographer

  • Constance Towers

    Constance Towers

    Shirley Thomas

  • James O'Rear

    James O'Rear

    Roy Carver

  • Donald Randolph

    Donald Randolph

    Coco Fields

  • Dayton Lummis

    Dayton Lummis

    Horace Sutherland

  • Jack Albertson

    Jack Albertson

    Les Bauer (uncredited)

  • Edna Holland

    Edna Holland

    Mrs. Gulick (as Edna M. Holland)

  • Dick Crockett

    Dick Crockett

    Jerry

  • Eddie Parker

    Eddie Parker

    Matt (as Edwin Parker)

  • Geraldine Hall

    Geraldine Hall

    Martha

  • Voltaire Perkins

    Voltaire Perkins

    Judge Evans

  • Joan Miller

    Joan Miller

    Fran

  • Helen Eby-Rock

    Helen Eby-Rock

    Mrs. Grannigan (as Helen Eby Rock)

  • Frank Mitchell

    Frank Mitchell

    Steve the Bartender

  • Norma Brooks

    Norma Brooks

    Doris

  • Robert B. Williams

    Robert B. Williams

    Police Sergeant (as Robert B. Williams)

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'; ?>
Over-Exposed

Cast (19)

  • Cleo Moore

    Cleo Moore

    Lily Krenshka / Lila Crane

  • Richard Crenna

    Richard Crenna

    Russell Bassett

  • Isobel Elsom

    Isobel Elsom

    Mrs. Payton Grange

  • Raymond Greenleaf

    Raymond Greenleaf

    Max West, Photographer

  • Constance Towers

    Constance Towers

    Shirley Thomas

  • James O'Rear

    James O'Rear

    Roy Carver

  • Donald Randolph

    Donald Randolph

    Coco Fields

  • Dayton Lummis

    Dayton Lummis

    Horace Sutherland

  • Jack Albertson

    Jack Albertson

    Les Bauer (uncredited)

  • Edna Holland

    Edna Holland

    Mrs. Gulick (as Edna M. Holland)

  • Dick Crockett

    Dick Crockett

    Jerry

  • Eddie Parker

    Eddie Parker

    Matt (as Edwin Parker)

  • Geraldine Hall

    Geraldine Hall

    Martha

  • Voltaire Perkins

    Voltaire Perkins

    Judge Evans

  • Joan Miller

    Joan Miller

    Fran

  • Helen Eby-Rock

    Helen Eby-Rock

    Mrs. Grannigan (as Helen Eby Rock)

  • Frank Mitchell

    Frank Mitchell

    Steve the Bartender

  • Norma Brooks

    Norma Brooks

    Doris

  • Robert B. Williams

    Robert B. Williams

    Police Sergeant (as Robert B. Williams)

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'; ?>
Over-Exposed

Cast (19)

  • Cleo Moore

    Cleo Moore

    Lily Krenshka / Lila Crane

  • Richard Crenna

    Richard Crenna

    Russell Bassett

  • Isobel Elsom

    Isobel Elsom

    Mrs. Payton Grange

  • Raymond Greenleaf

    Raymond Greenleaf

    Max West, Photographer

  • Constance Towers

    Constance Towers

    Shirley Thomas

  • James O'Rear

    James O'Rear

    Roy Carver

  • Donald Randolph

    Donald Randolph

    Coco Fields

  • Dayton Lummis

    Dayton Lummis

    Horace Sutherland

  • Jack Albertson

    Jack Albertson

    Les Bauer (uncredited)

  • Edna Holland

    Edna Holland

    Mrs. Gulick (as Edna M. Holland)

  • Dick Crockett

    Dick Crockett

    Jerry

  • Eddie Parker

    Eddie Parker

    Matt (as Edwin Parker)

  • Geraldine Hall

    Geraldine Hall

    Martha

  • Voltaire Perkins

    Voltaire Perkins

    Judge Evans

  • Joan Miller

    Joan Miller

    Fran

  • Helen Eby-Rock

    Helen Eby-Rock

    Mrs. Grannigan (as Helen Eby Rock)

  • Frank Mitchell

    Frank Mitchell

    Steve the Bartender

  • Norma Brooks

    Norma Brooks

    Doris

  • Robert B. Williams

    Robert B. Williams

    Police Sergeant (as Robert B. Williams)

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'; ?>
Over-Exposed

Cast (19)

  • Cleo Moore

    Cleo Moore

    Lily Krenshka / Lila Crane

  • Richard Crenna

    Richard Crenna

    Russell Bassett

  • Isobel Elsom

    Isobel Elsom

    Mrs. Payton Grange

  • Raymond Greenleaf

    Raymond Greenleaf

    Max West, Photographer

  • Constance Towers

    Constance Towers

    Shirley Thomas

  • James O'Rear

    James O'Rear

    Roy Carver

  • Donald Randolph

    Donald Randolph

    Coco Fields

  • Dayton Lummis

    Dayton Lummis

    Horace Sutherland

  • Jack Albertson

    Jack Albertson

    Les Bauer (uncredited)

  • Edna Holland

    Edna Holland

    Mrs. Gulick (as Edna M. Holland)

  • Dick Crockett

    Dick Crockett

    Jerry

  • Eddie Parker

    Eddie Parker

    Matt (as Edwin Parker)

  • Geraldine Hall

    Geraldine Hall

    Martha

  • Voltaire Perkins

    Voltaire Perkins

    Judge Evans

  • Joan Miller

    Joan Miller

    Fran

  • Helen Eby-Rock

    Helen Eby-Rock

    Mrs. Grannigan (as Helen Eby Rock)

  • Frank Mitchell

    Frank Mitchell

    Steve the Bartender

  • Norma Brooks

    Norma Brooks

    Doris

  • Robert B. Williams

    Robert B. Williams

    Police Sergeant (as Robert B. Williams)

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'; ?>
Over-Exposed

Cast (19)

  • Cleo Moore

    Cleo Moore

    Lily Krenshka / Lila Crane

  • Richard Crenna

    Richard Crenna

    Russell Bassett

  • Isobel Elsom

    Isobel Elsom

    Mrs. Payton Grange

  • Raymond Greenleaf

    Raymond Greenleaf

    Max West, Photographer

  • Constance Towers

    Constance Towers

    Shirley Thomas

  • James O'Rear

    James O'Rear

    Roy Carver

  • Donald Randolph

    Donald Randolph

    Coco Fields

  • Dayton Lummis

    Dayton Lummis

    Horace Sutherland

  • Jack Albertson

    Jack Albertson

    Les Bauer (uncredited)

  • Edna Holland

    Edna Holland

    Mrs. Gulick (as Edna M. Holland)

  • Dick Crockett

    Dick Crockett

    Jerry

  • Eddie Parker

    Eddie Parker

    Matt (as Edwin Parker)

  • Geraldine Hall

    Geraldine Hall

    Martha

  • Voltaire Perkins

    Voltaire Perkins

    Judge Evans

  • Joan Miller

    Joan Miller

    Fran

  • Helen Eby-Rock

    Helen Eby-Rock

    Mrs. Grannigan (as Helen Eby Rock)

  • Frank Mitchell

    Frank Mitchell

    Steve the Bartender

  • Norma Brooks

    Norma Brooks

    Doris

  • Robert B. Williams

    Robert B. Williams

    Police Sergeant (as Robert B. Williams)

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'; ?>
Over-Exposed

Cast (19)

  • Cleo Moore

    Cleo Moore

    Lily Krenshka / Lila Crane

  • Richard Crenna

    Richard Crenna

    Russell Bassett

  • Isobel Elsom

    Isobel Elsom

    Mrs. Payton Grange

  • Raymond Greenleaf

    Raymond Greenleaf

    Max West, Photographer

  • Constance Towers

    Constance Towers

    Shirley Thomas

  • James O'Rear

    James O'Rear

    Roy Carver

  • Donald Randolph

    Donald Randolph

    Coco Fields

  • Dayton Lummis

    Dayton Lummis

    Horace Sutherland

  • Jack Albertson

    Jack Albertson

    Les Bauer (uncredited)

  • Edna Holland

    Edna Holland

    Mrs. Gulick (as Edna M. Holland)

  • Dick Crockett

    Dick Crockett

    Jerry

  • Eddie Parker

    Eddie Parker

    Matt (as Edwin Parker)

  • Geraldine Hall

    Geraldine Hall

    Martha

  • Voltaire Perkins

    Voltaire Perkins

    Judge Evans

  • Joan Miller

    Joan Miller

    Fran

  • Helen Eby-Rock

    Helen Eby-Rock

    Mrs. Grannigan (as Helen Eby Rock)

  • Frank Mitchell

    Frank Mitchell

    Steve the Bartender

  • Norma Brooks

    Norma Brooks

    Doris

  • Robert B. Williams

    Robert B. Williams

    Police Sergeant (as Robert B. Williams)