Nick of Time

Cast (35)

  • Johnny Depp

    Johnny Depp

    Gene Watson

  • Courtney Chase

    Courtney Chase

    Lynn Watson

  • Charles S. Dutton

    Charles S. Dutton

    Hucy

  • Christopher Walken

    Christopher Walken

    Mr. Smith

  • Roma Maffia

    Roma Maffia

    Ms. Jones

  • Peter Strauss

    Peter Strauss

    Brendan Grant

  • Gloria Reuben

    Gloria Reuben

    Krista Brooks

  • Marsha Mason

    Marsha Mason

    Gov. Eleanor Grant

  • Miguel Nájera

    Miguel Nájera

    Franco (Governor's Bodyguard)

  • Bill Smitrovich

    Bill Smitrovich

    Officer Trust

  • G. D. Spradlin

    G. D. Spradlin

    Mystery Man

  • Charles Carroll

    Charles Carroll

    Sanitation Engineer

  • Yul Vazquez

    Yul Vazquez

    Gustino (Guest Services)

  • Edith Diaz

    Edith Diaz

    Irene (Domestic Maintenance)

  • Armando Ortega

    Armando Ortega

    Hector (Guest Services)

  • C.J. Bau

    C.J. Bau

    Mixologist

  • Cynthena Sanders

    Cynthena Sanders

    Beverage Server

  • Dana Mackey

    Dana Mackey

    Transport Reception Manager

  • Jerry Tondo

    Jerry Tondo

    Chief Aide

  • Lance Hunter Voorhees

    Lance Hunter Voorhees

    Weapons Security

  • John Azevedo Jr.

    John Azevedo Jr.

    Security Associate

  • Lance August

    Lance August

    Personal Security

  • Peter MacKenzie

    Peter MacKenzie

    JBN Reporter

  • Rick Zieff

    Rick Zieff

    JBN Videographer

  • Michael Chong

    Michael Chong

    Asian Man

  • Cynthia Noritake

    Cynthia Noritake

    Asian Woman

  • Holly Kuespert

    Holly Kuespert

    Physically Attractive Woman

  • Pamela Dunlap

    Pamela Dunlap

    Centerpiece Poacher

  • Jan Speck

    Jan Speck

    Rally Orienter

  • Tom Lawrence

    Tom Lawrence

    Personal Waste Facility User

  • Robert Buckingham

    Robert Buckingham

    Illegal Security Access Carrier

  • Clark Johnson

    Clark Johnson

    Hackney Transportist

  • Antony Sandoval

    Antony Sandoval

    Un Homme

  • Isabel García Lorca

    Isabel García Lorca

    Une Femme

  • Ray Uhler

    Ray Uhler

    Reporter (uncredited)

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'; ?>
Nick of Time

Cast (35)

  • Johnny Depp

    Johnny Depp

    Gene Watson

  • Courtney Chase

    Courtney Chase

    Lynn Watson

  • Charles S. Dutton

    Charles S. Dutton

    Hucy

  • Christopher Walken

    Christopher Walken

    Mr. Smith

  • Roma Maffia

    Roma Maffia

    Ms. Jones

  • Peter Strauss

    Peter Strauss

    Brendan Grant

  • Gloria Reuben

    Gloria Reuben

    Krista Brooks

  • Marsha Mason

    Marsha Mason

    Gov. Eleanor Grant

  • Miguel Nájera

    Miguel Nájera

    Franco (Governor's Bodyguard)

  • Bill Smitrovich

    Bill Smitrovich

    Officer Trust

  • G. D. Spradlin

    G. D. Spradlin

    Mystery Man

  • Charles Carroll

    Charles Carroll

    Sanitation Engineer

  • Yul Vazquez

    Yul Vazquez

    Gustino (Guest Services)

  • Edith Diaz

    Edith Diaz

    Irene (Domestic Maintenance)

  • Armando Ortega

    Armando Ortega

    Hector (Guest Services)

  • C.J. Bau

    C.J. Bau

    Mixologist

  • Cynthena Sanders

    Cynthena Sanders

    Beverage Server

  • Dana Mackey

    Dana Mackey

    Transport Reception Manager

  • Jerry Tondo

    Jerry Tondo

    Chief Aide

  • Lance Hunter Voorhees

    Lance Hunter Voorhees

    Weapons Security

  • John Azevedo Jr.

    John Azevedo Jr.

    Security Associate

  • Lance August

    Lance August

    Personal Security

  • Peter MacKenzie

    Peter MacKenzie

    JBN Reporter

  • Rick Zieff

    Rick Zieff

    JBN Videographer

  • Michael Chong

    Michael Chong

    Asian Man

  • Cynthia Noritake

    Cynthia Noritake

    Asian Woman

  • Holly Kuespert

    Holly Kuespert

    Physically Attractive Woman

  • Pamela Dunlap

    Pamela Dunlap

    Centerpiece Poacher

  • Jan Speck

    Jan Speck

    Rally Orienter

  • Tom Lawrence

    Tom Lawrence

    Personal Waste Facility User

  • Robert Buckingham

    Robert Buckingham

    Illegal Security Access Carrier

  • Clark Johnson

    Clark Johnson

    Hackney Transportist

  • Antony Sandoval

    Antony Sandoval

    Un Homme

  • Isabel García Lorca

    Isabel García Lorca

    Une Femme

  • Ray Uhler

    Ray Uhler

    Reporter (uncredited)

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'; ?>
Nick of Time

Cast (35)

  • Johnny Depp

    Johnny Depp

    Gene Watson

  • Courtney Chase

    Courtney Chase

    Lynn Watson

  • Charles S. Dutton

    Charles S. Dutton

    Hucy

  • Christopher Walken

    Christopher Walken

    Mr. Smith

  • Roma Maffia

    Roma Maffia

    Ms. Jones

  • Peter Strauss

    Peter Strauss

    Brendan Grant

  • Gloria Reuben

    Gloria Reuben

    Krista Brooks

  • Marsha Mason

    Marsha Mason

    Gov. Eleanor Grant

  • Miguel Nájera

    Miguel Nájera

    Franco (Governor's Bodyguard)

  • Bill Smitrovich

    Bill Smitrovich

    Officer Trust

  • G. D. Spradlin

    G. D. Spradlin

    Mystery Man

  • Charles Carroll

    Charles Carroll

    Sanitation Engineer

  • Yul Vazquez

    Yul Vazquez

    Gustino (Guest Services)

  • Edith Diaz

    Edith Diaz

    Irene (Domestic Maintenance)

  • Armando Ortega

    Armando Ortega

    Hector (Guest Services)

  • C.J. Bau

    C.J. Bau

    Mixologist

  • Cynthena Sanders

    Cynthena Sanders

    Beverage Server

  • Dana Mackey

    Dana Mackey

    Transport Reception Manager

  • Jerry Tondo

    Jerry Tondo

    Chief Aide

  • Lance Hunter Voorhees

    Lance Hunter Voorhees

    Weapons Security

  • John Azevedo Jr.

    John Azevedo Jr.

    Security Associate

  • Lance August

    Lance August

    Personal Security

  • Peter MacKenzie

    Peter MacKenzie

    JBN Reporter

  • Rick Zieff

    Rick Zieff

    JBN Videographer

  • Michael Chong

    Michael Chong

    Asian Man

  • Cynthia Noritake

    Cynthia Noritake

    Asian Woman

  • Holly Kuespert

    Holly Kuespert

    Physically Attractive Woman

  • Pamela Dunlap

    Pamela Dunlap

    Centerpiece Poacher

  • Jan Speck

    Jan Speck

    Rally Orienter

  • Tom Lawrence

    Tom Lawrence

    Personal Waste Facility User

  • Robert Buckingham

    Robert Buckingham

    Illegal Security Access Carrier

  • Clark Johnson

    Clark Johnson

    Hackney Transportist

  • Antony Sandoval

    Antony Sandoval

    Un Homme

  • Isabel García Lorca

    Isabel García Lorca

    Une Femme

  • Ray Uhler

    Ray Uhler

    Reporter (uncredited)

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'; ?>
Nick of Time

Cast (35)

  • Johnny Depp

    Johnny Depp

    Gene Watson

  • Courtney Chase

    Courtney Chase

    Lynn Watson

  • Charles S. Dutton

    Charles S. Dutton

    Hucy

  • Christopher Walken

    Christopher Walken

    Mr. Smith

  • Roma Maffia

    Roma Maffia

    Ms. Jones

  • Peter Strauss

    Peter Strauss

    Brendan Grant

  • Gloria Reuben

    Gloria Reuben

    Krista Brooks

  • Marsha Mason

    Marsha Mason

    Gov. Eleanor Grant

  • Miguel Nájera

    Miguel Nájera

    Franco (Governor's Bodyguard)

  • Bill Smitrovich

    Bill Smitrovich

    Officer Trust

  • G. D. Spradlin

    G. D. Spradlin

    Mystery Man

  • Charles Carroll

    Charles Carroll

    Sanitation Engineer

  • Yul Vazquez

    Yul Vazquez

    Gustino (Guest Services)

  • Edith Diaz

    Edith Diaz

    Irene (Domestic Maintenance)

  • Armando Ortega

    Armando Ortega

    Hector (Guest Services)

  • C.J. Bau

    C.J. Bau

    Mixologist

  • Cynthena Sanders

    Cynthena Sanders

    Beverage Server

  • Dana Mackey

    Dana Mackey

    Transport Reception Manager

  • Jerry Tondo

    Jerry Tondo

    Chief Aide

  • Lance Hunter Voorhees

    Lance Hunter Voorhees

    Weapons Security

  • John Azevedo Jr.

    John Azevedo Jr.

    Security Associate

  • Lance August

    Lance August

    Personal Security

  • Peter MacKenzie

    Peter MacKenzie

    JBN Reporter

  • Rick Zieff

    Rick Zieff

    JBN Videographer

  • Michael Chong

    Michael Chong

    Asian Man

  • Cynthia Noritake

    Cynthia Noritake

    Asian Woman

  • Holly Kuespert

    Holly Kuespert

    Physically Attractive Woman

  • Pamela Dunlap

    Pamela Dunlap

    Centerpiece Poacher

  • Jan Speck

    Jan Speck

    Rally Orienter

  • Tom Lawrence

    Tom Lawrence

    Personal Waste Facility User

  • Robert Buckingham

    Robert Buckingham

    Illegal Security Access Carrier

  • Clark Johnson

    Clark Johnson

    Hackney Transportist

  • Antony Sandoval

    Antony Sandoval

    Un Homme

  • Isabel García Lorca

    Isabel García Lorca

    Une Femme

  • Ray Uhler

    Ray Uhler

    Reporter (uncredited)

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'; ?>
Nick of Time

Cast (35)

  • Johnny Depp

    Johnny Depp

    Gene Watson

  • Courtney Chase

    Courtney Chase

    Lynn Watson

  • Charles S. Dutton

    Charles S. Dutton

    Hucy

  • Christopher Walken

    Christopher Walken

    Mr. Smith

  • Roma Maffia

    Roma Maffia

    Ms. Jones

  • Peter Strauss

    Peter Strauss

    Brendan Grant

  • Gloria Reuben

    Gloria Reuben

    Krista Brooks

  • Marsha Mason

    Marsha Mason

    Gov. Eleanor Grant

  • Miguel Nájera

    Miguel Nájera

    Franco (Governor's Bodyguard)

  • Bill Smitrovich

    Bill Smitrovich

    Officer Trust

  • G. D. Spradlin

    G. D. Spradlin

    Mystery Man

  • Charles Carroll

    Charles Carroll

    Sanitation Engineer

  • Yul Vazquez

    Yul Vazquez

    Gustino (Guest Services)

  • Edith Diaz

    Edith Diaz

    Irene (Domestic Maintenance)

  • Armando Ortega

    Armando Ortega

    Hector (Guest Services)

  • C.J. Bau

    C.J. Bau

    Mixologist

  • Cynthena Sanders

    Cynthena Sanders

    Beverage Server

  • Dana Mackey

    Dana Mackey

    Transport Reception Manager

  • Jerry Tondo

    Jerry Tondo

    Chief Aide

  • Lance Hunter Voorhees

    Lance Hunter Voorhees

    Weapons Security

  • John Azevedo Jr.

    John Azevedo Jr.

    Security Associate

  • Lance August

    Lance August

    Personal Security

  • Peter MacKenzie

    Peter MacKenzie

    JBN Reporter

  • Rick Zieff

    Rick Zieff

    JBN Videographer

  • Michael Chong

    Michael Chong

    Asian Man

  • Cynthia Noritake

    Cynthia Noritake

    Asian Woman

  • Holly Kuespert

    Holly Kuespert

    Physically Attractive Woman

  • Pamela Dunlap

    Pamela Dunlap

    Centerpiece Poacher

  • Jan Speck

    Jan Speck

    Rally Orienter

  • Tom Lawrence

    Tom Lawrence

    Personal Waste Facility User

  • Robert Buckingham

    Robert Buckingham

    Illegal Security Access Carrier

  • Clark Johnson

    Clark Johnson

    Hackney Transportist

  • Antony Sandoval

    Antony Sandoval

    Un Homme

  • Isabel García Lorca

    Isabel García Lorca

    Une Femme

  • Ray Uhler

    Ray Uhler

    Reporter (uncredited)

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'; ?>
Nick of Time

Cast (35)

  • Johnny Depp

    Johnny Depp

    Gene Watson

  • Courtney Chase

    Courtney Chase

    Lynn Watson

  • Charles S. Dutton

    Charles S. Dutton

    Hucy

  • Christopher Walken

    Christopher Walken

    Mr. Smith

  • Roma Maffia

    Roma Maffia

    Ms. Jones

  • Peter Strauss

    Peter Strauss

    Brendan Grant

  • Gloria Reuben

    Gloria Reuben

    Krista Brooks

  • Marsha Mason

    Marsha Mason

    Gov. Eleanor Grant

  • Miguel Nájera

    Miguel Nájera

    Franco (Governor's Bodyguard)

  • Bill Smitrovich

    Bill Smitrovich

    Officer Trust

  • G. D. Spradlin

    G. D. Spradlin

    Mystery Man

  • Charles Carroll

    Charles Carroll

    Sanitation Engineer

  • Yul Vazquez

    Yul Vazquez

    Gustino (Guest Services)

  • Edith Diaz

    Edith Diaz

    Irene (Domestic Maintenance)

  • Armando Ortega

    Armando Ortega

    Hector (Guest Services)

  • C.J. Bau

    C.J. Bau

    Mixologist

  • Cynthena Sanders

    Cynthena Sanders

    Beverage Server

  • Dana Mackey

    Dana Mackey

    Transport Reception Manager

  • Jerry Tondo

    Jerry Tondo

    Chief Aide

  • Lance Hunter Voorhees

    Lance Hunter Voorhees

    Weapons Security

  • John Azevedo Jr.

    John Azevedo Jr.

    Security Associate

  • Lance August

    Lance August

    Personal Security

  • Peter MacKenzie

    Peter MacKenzie

    JBN Reporter

  • Rick Zieff

    Rick Zieff

    JBN Videographer

  • Michael Chong

    Michael Chong

    Asian Man

  • Cynthia Noritake

    Cynthia Noritake

    Asian Woman

  • Holly Kuespert

    Holly Kuespert

    Physically Attractive Woman

  • Pamela Dunlap

    Pamela Dunlap

    Centerpiece Poacher

  • Jan Speck

    Jan Speck

    Rally Orienter

  • Tom Lawrence

    Tom Lawrence

    Personal Waste Facility User

  • Robert Buckingham

    Robert Buckingham

    Illegal Security Access Carrier

  • Clark Johnson

    Clark Johnson

    Hackney Transportist

  • Antony Sandoval

    Antony Sandoval

    Un Homme

  • Isabel García Lorca

    Isabel García Lorca

    Une Femme

  • Ray Uhler

    Ray Uhler

    Reporter (uncredited)

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'; ?>
Nick of Time

Cast (35)

  • Johnny Depp

    Johnny Depp

    Gene Watson

  • Courtney Chase

    Courtney Chase

    Lynn Watson

  • Charles S. Dutton

    Charles S. Dutton

    Hucy

  • Christopher Walken

    Christopher Walken

    Mr. Smith

  • Roma Maffia

    Roma Maffia

    Ms. Jones

  • Peter Strauss

    Peter Strauss

    Brendan Grant

  • Gloria Reuben

    Gloria Reuben

    Krista Brooks

  • Marsha Mason

    Marsha Mason

    Gov. Eleanor Grant

  • Miguel Nájera

    Miguel Nájera

    Franco (Governor's Bodyguard)

  • Bill Smitrovich

    Bill Smitrovich

    Officer Trust

  • G. D. Spradlin

    G. D. Spradlin

    Mystery Man

  • Charles Carroll

    Charles Carroll

    Sanitation Engineer

  • Yul Vazquez

    Yul Vazquez

    Gustino (Guest Services)

  • Edith Diaz

    Edith Diaz

    Irene (Domestic Maintenance)

  • Armando Ortega

    Armando Ortega

    Hector (Guest Services)

  • C.J. Bau

    C.J. Bau

    Mixologist

  • Cynthena Sanders

    Cynthena Sanders

    Beverage Server

  • Dana Mackey

    Dana Mackey

    Transport Reception Manager

  • Jerry Tondo

    Jerry Tondo

    Chief Aide

  • Lance Hunter Voorhees

    Lance Hunter Voorhees

    Weapons Security

  • John Azevedo Jr.

    John Azevedo Jr.

    Security Associate

  • Lance August

    Lance August

    Personal Security

  • Peter MacKenzie

    Peter MacKenzie

    JBN Reporter

  • Rick Zieff

    Rick Zieff

    JBN Videographer

  • Michael Chong

    Michael Chong

    Asian Man

  • Cynthia Noritake

    Cynthia Noritake

    Asian Woman

  • Holly Kuespert

    Holly Kuespert

    Physically Attractive Woman

  • Pamela Dunlap

    Pamela Dunlap

    Centerpiece Poacher

  • Jan Speck

    Jan Speck

    Rally Orienter

  • Tom Lawrence

    Tom Lawrence

    Personal Waste Facility User

  • Robert Buckingham

    Robert Buckingham

    Illegal Security Access Carrier

  • Clark Johnson

    Clark Johnson

    Hackney Transportist

  • Antony Sandoval

    Antony Sandoval

    Un Homme

  • Isabel García Lorca

    Isabel García Lorca

    Une Femme

  • Ray Uhler

    Ray Uhler

    Reporter (uncredited)