Delta Farce

Cast (38)

  • Larry the Cable Guy

    Larry the Cable Guy

    Larry

  • Bill Engvall

    Bill Engvall

    Bill

  • DJ Qualls

    DJ Qualls

    Everett

  • Christina Moore

    Christina Moore

    Karen

  • Danny Trejo

    Danny Trejo

    Carlos Santana

  • Keith David

    Keith David

    Sgt. Kilgore

  • Jeff Dunham

    Jeff Dunham

    Amazing Ken

  • Ed O'Ross

    Ed O'Ross

    Victor

  • Michael Papajohn

    Michael Papajohn

    Bill's Neighbor

  • Marisol Nichols

    Marisol Nichols

    Maria

  • Glenn Morshower

    Glenn Morshower

    General

  • Michael Rose

    Michael Rose

    Sgt. Major

  • Lorna Scott

    Lorna Scott

    Woman at Cowboy Frank's

  • Parker Goris

    Parker Goris

    Bill's Boy

  • Lisa Lampanelli

    Lisa Lampanelli

    Connie

  • Lance Smith

    Lance Smith

    Sgt. Adams

  • Bill Doyle

    Bill Doyle

    Colonel

  • McKinley Freeman

    McKinley Freeman

    Airborne Soldier

  • Joel McKinnon Miller

    Joel McKinnon Miller

    Pilot

  • Chris Spencer

    Chris Spencer

    Co-Pilot

  • Alejandro Patiño

    Alejandro Patiño

    Juan

  • Luis Chávez

    Luis Chávez

    Carlos

  • David DeSantos

    David DeSantos

    Bandito #3 Ricardo

  • Nicholas Guilak

    Nicholas Guilak

    Luis

  • Toby Holguin

    Toby Holguin

    Bandito #1

  • Jimmy Ortega

    Jimmy Ortega

    Bandito #2

  • Albert P. Santos

    Albert P. Santos

    Flaco

  • Emilio Rivera

    Emilio Rivera

    Jorge

  • Shelly Desai

    Shelly Desai

    Farmer

  • Tony Perez

    Tony Perez

    Mayor

  • Danielle Hartnett

    Danielle Hartnett

    Senorita Magdalena

  • Carlos Moreno Jr.

    Carlos Moreno Jr.

    Jaime

  • Rolando Molina

    Rolando Molina

    Bartender

  • Joe Nuñez

    Joe Nuñez

    Ruben

  • Esteban Cueto

    Esteban Cueto

    El Javelina

  • Thomas Rosales Jr.

    Thomas Rosales Jr.

    Bandito Guard

  • Matt Riedy

    Matt Riedy

    Colonel Dalton

  • Amy Powell

    Amy Powell

    Anchorwoman

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'; ?>
Delta Farce

Cast (38)

  • Larry the Cable Guy

    Larry the Cable Guy

    Larry

  • Bill Engvall

    Bill Engvall

    Bill

  • DJ Qualls

    DJ Qualls

    Everett

  • Christina Moore

    Christina Moore

    Karen

  • Danny Trejo

    Danny Trejo

    Carlos Santana

  • Keith David

    Keith David

    Sgt. Kilgore

  • Jeff Dunham

    Jeff Dunham

    Amazing Ken

  • Ed O'Ross

    Ed O'Ross

    Victor

  • Michael Papajohn

    Michael Papajohn

    Bill's Neighbor

  • Marisol Nichols

    Marisol Nichols

    Maria

  • Glenn Morshower

    Glenn Morshower

    General

  • Michael Rose

    Michael Rose

    Sgt. Major

  • Lorna Scott

    Lorna Scott

    Woman at Cowboy Frank's

  • Parker Goris

    Parker Goris

    Bill's Boy

  • Lisa Lampanelli

    Lisa Lampanelli

    Connie

  • Lance Smith

    Lance Smith

    Sgt. Adams

  • Bill Doyle

    Bill Doyle

    Colonel

  • McKinley Freeman

    McKinley Freeman

    Airborne Soldier

  • Joel McKinnon Miller

    Joel McKinnon Miller

    Pilot

  • Chris Spencer

    Chris Spencer

    Co-Pilot

  • Alejandro Patiño

    Alejandro Patiño

    Juan

  • Luis Chávez

    Luis Chávez

    Carlos

  • David DeSantos

    David DeSantos

    Bandito #3 Ricardo

  • Nicholas Guilak

    Nicholas Guilak

    Luis

  • Toby Holguin

    Toby Holguin

    Bandito #1

  • Jimmy Ortega

    Jimmy Ortega

    Bandito #2

  • Albert P. Santos

    Albert P. Santos

    Flaco

  • Emilio Rivera

    Emilio Rivera

    Jorge

  • Shelly Desai

    Shelly Desai

    Farmer

  • Tony Perez

    Tony Perez

    Mayor

  • Danielle Hartnett

    Danielle Hartnett

    Senorita Magdalena

  • Carlos Moreno Jr.

    Carlos Moreno Jr.

    Jaime

  • Rolando Molina

    Rolando Molina

    Bartender

  • Joe Nuñez

    Joe Nuñez

    Ruben

  • Esteban Cueto

    Esteban Cueto

    El Javelina

  • Thomas Rosales Jr.

    Thomas Rosales Jr.

    Bandito Guard

  • Matt Riedy

    Matt Riedy

    Colonel Dalton

  • Amy Powell

    Amy Powell

    Anchorwoman

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'; ?>
Delta Farce

Cast (38)

  • Larry the Cable Guy

    Larry the Cable Guy

    Larry

  • Bill Engvall

    Bill Engvall

    Bill

  • DJ Qualls

    DJ Qualls

    Everett

  • Christina Moore

    Christina Moore

    Karen

  • Danny Trejo

    Danny Trejo

    Carlos Santana

  • Keith David

    Keith David

    Sgt. Kilgore

  • Jeff Dunham

    Jeff Dunham

    Amazing Ken

  • Ed O'Ross

    Ed O'Ross

    Victor

  • Michael Papajohn

    Michael Papajohn

    Bill's Neighbor

  • Marisol Nichols

    Marisol Nichols

    Maria

  • Glenn Morshower

    Glenn Morshower

    General

  • Michael Rose

    Michael Rose

    Sgt. Major

  • Lorna Scott

    Lorna Scott

    Woman at Cowboy Frank's

  • Parker Goris

    Parker Goris

    Bill's Boy

  • Lisa Lampanelli

    Lisa Lampanelli

    Connie

  • Lance Smith

    Lance Smith

    Sgt. Adams

  • Bill Doyle

    Bill Doyle

    Colonel

  • McKinley Freeman

    McKinley Freeman

    Airborne Soldier

  • Joel McKinnon Miller

    Joel McKinnon Miller

    Pilot

  • Chris Spencer

    Chris Spencer

    Co-Pilot

  • Alejandro Patiño

    Alejandro Patiño

    Juan

  • Luis Chávez

    Luis Chávez

    Carlos

  • David DeSantos

    David DeSantos

    Bandito #3 Ricardo

  • Nicholas Guilak

    Nicholas Guilak

    Luis

  • Toby Holguin

    Toby Holguin

    Bandito #1

  • Jimmy Ortega

    Jimmy Ortega

    Bandito #2

  • Albert P. Santos

    Albert P. Santos

    Flaco

  • Emilio Rivera

    Emilio Rivera

    Jorge

  • Shelly Desai

    Shelly Desai

    Farmer

  • Tony Perez

    Tony Perez

    Mayor

  • Danielle Hartnett

    Danielle Hartnett

    Senorita Magdalena

  • Carlos Moreno Jr.

    Carlos Moreno Jr.

    Jaime

  • Rolando Molina

    Rolando Molina

    Bartender

  • Joe Nuñez

    Joe Nuñez

    Ruben

  • Esteban Cueto

    Esteban Cueto

    El Javelina

  • Thomas Rosales Jr.

    Thomas Rosales Jr.

    Bandito Guard

  • Matt Riedy

    Matt Riedy

    Colonel Dalton

  • Amy Powell

    Amy Powell

    Anchorwoman

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'; ?>
Delta Farce

Cast (38)

  • Larry the Cable Guy

    Larry the Cable Guy

    Larry

  • Bill Engvall

    Bill Engvall

    Bill

  • DJ Qualls

    DJ Qualls

    Everett

  • Christina Moore

    Christina Moore

    Karen

  • Danny Trejo

    Danny Trejo

    Carlos Santana

  • Keith David

    Keith David

    Sgt. Kilgore

  • Jeff Dunham

    Jeff Dunham

    Amazing Ken

  • Ed O'Ross

    Ed O'Ross

    Victor

  • Michael Papajohn

    Michael Papajohn

    Bill's Neighbor

  • Marisol Nichols

    Marisol Nichols

    Maria

  • Glenn Morshower

    Glenn Morshower

    General

  • Michael Rose

    Michael Rose

    Sgt. Major

  • Lorna Scott

    Lorna Scott

    Woman at Cowboy Frank's

  • Parker Goris

    Parker Goris

    Bill's Boy

  • Lisa Lampanelli

    Lisa Lampanelli

    Connie

  • Lance Smith

    Lance Smith

    Sgt. Adams

  • Bill Doyle

    Bill Doyle

    Colonel

  • McKinley Freeman

    McKinley Freeman

    Airborne Soldier

  • Joel McKinnon Miller

    Joel McKinnon Miller

    Pilot

  • Chris Spencer

    Chris Spencer

    Co-Pilot

  • Alejandro Patiño

    Alejandro Patiño

    Juan

  • Luis Chávez

    Luis Chávez

    Carlos

  • David DeSantos

    David DeSantos

    Bandito #3 Ricardo

  • Nicholas Guilak

    Nicholas Guilak

    Luis

  • Toby Holguin

    Toby Holguin

    Bandito #1

  • Jimmy Ortega

    Jimmy Ortega

    Bandito #2

  • Albert P. Santos

    Albert P. Santos

    Flaco

  • Emilio Rivera

    Emilio Rivera

    Jorge

  • Shelly Desai

    Shelly Desai

    Farmer

  • Tony Perez

    Tony Perez

    Mayor

  • Danielle Hartnett

    Danielle Hartnett

    Senorita Magdalena

  • Carlos Moreno Jr.

    Carlos Moreno Jr.

    Jaime

  • Rolando Molina

    Rolando Molina

    Bartender

  • Joe Nuñez

    Joe Nuñez

    Ruben

  • Esteban Cueto

    Esteban Cueto

    El Javelina

  • Thomas Rosales Jr.

    Thomas Rosales Jr.

    Bandito Guard

  • Matt Riedy

    Matt Riedy

    Colonel Dalton

  • Amy Powell

    Amy Powell

    Anchorwoman

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'; ?>
Delta Farce

Cast (38)

  • Larry the Cable Guy

    Larry the Cable Guy

    Larry

  • Bill Engvall

    Bill Engvall

    Bill

  • DJ Qualls

    DJ Qualls

    Everett

  • Christina Moore

    Christina Moore

    Karen

  • Danny Trejo

    Danny Trejo

    Carlos Santana

  • Keith David

    Keith David

    Sgt. Kilgore

  • Jeff Dunham

    Jeff Dunham

    Amazing Ken

  • Ed O'Ross

    Ed O'Ross

    Victor

  • Michael Papajohn

    Michael Papajohn

    Bill's Neighbor

  • Marisol Nichols

    Marisol Nichols

    Maria

  • Glenn Morshower

    Glenn Morshower

    General

  • Michael Rose

    Michael Rose

    Sgt. Major

  • Lorna Scott

    Lorna Scott

    Woman at Cowboy Frank's

  • Parker Goris

    Parker Goris

    Bill's Boy

  • Lisa Lampanelli

    Lisa Lampanelli

    Connie

  • Lance Smith

    Lance Smith

    Sgt. Adams

  • Bill Doyle

    Bill Doyle

    Colonel

  • McKinley Freeman

    McKinley Freeman

    Airborne Soldier

  • Joel McKinnon Miller

    Joel McKinnon Miller

    Pilot

  • Chris Spencer

    Chris Spencer

    Co-Pilot

  • Alejandro Patiño

    Alejandro Patiño

    Juan

  • Luis Chávez

    Luis Chávez

    Carlos

  • David DeSantos

    David DeSantos

    Bandito #3 Ricardo

  • Nicholas Guilak

    Nicholas Guilak

    Luis

  • Toby Holguin

    Toby Holguin

    Bandito #1

  • Jimmy Ortega

    Jimmy Ortega

    Bandito #2

  • Albert P. Santos

    Albert P. Santos

    Flaco

  • Emilio Rivera

    Emilio Rivera

    Jorge

  • Shelly Desai

    Shelly Desai

    Farmer

  • Tony Perez

    Tony Perez

    Mayor

  • Danielle Hartnett

    Danielle Hartnett

    Senorita Magdalena

  • Carlos Moreno Jr.

    Carlos Moreno Jr.

    Jaime

  • Rolando Molina

    Rolando Molina

    Bartender

  • Joe Nuñez

    Joe Nuñez

    Ruben

  • Esteban Cueto

    Esteban Cueto

    El Javelina

  • Thomas Rosales Jr.

    Thomas Rosales Jr.

    Bandito Guard

  • Matt Riedy

    Matt Riedy

    Colonel Dalton

  • Amy Powell

    Amy Powell

    Anchorwoman

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'; ?>
Delta Farce

Cast (38)

  • Larry the Cable Guy

    Larry the Cable Guy

    Larry

  • Bill Engvall

    Bill Engvall

    Bill

  • DJ Qualls

    DJ Qualls

    Everett

  • Christina Moore

    Christina Moore

    Karen

  • Danny Trejo

    Danny Trejo

    Carlos Santana

  • Keith David

    Keith David

    Sgt. Kilgore

  • Jeff Dunham

    Jeff Dunham

    Amazing Ken

  • Ed O'Ross

    Ed O'Ross

    Victor

  • Michael Papajohn

    Michael Papajohn

    Bill's Neighbor

  • Marisol Nichols

    Marisol Nichols

    Maria

  • Glenn Morshower

    Glenn Morshower

    General

  • Michael Rose

    Michael Rose

    Sgt. Major

  • Lorna Scott

    Lorna Scott

    Woman at Cowboy Frank's

  • Parker Goris

    Parker Goris

    Bill's Boy

  • Lisa Lampanelli

    Lisa Lampanelli

    Connie

  • Lance Smith

    Lance Smith

    Sgt. Adams

  • Bill Doyle

    Bill Doyle

    Colonel

  • McKinley Freeman

    McKinley Freeman

    Airborne Soldier

  • Joel McKinnon Miller

    Joel McKinnon Miller

    Pilot

  • Chris Spencer

    Chris Spencer

    Co-Pilot

  • Alejandro Patiño

    Alejandro Patiño

    Juan

  • Luis Chávez

    Luis Chávez

    Carlos

  • David DeSantos

    David DeSantos

    Bandito #3 Ricardo

  • Nicholas Guilak

    Nicholas Guilak

    Luis

  • Toby Holguin

    Toby Holguin

    Bandito #1

  • Jimmy Ortega

    Jimmy Ortega

    Bandito #2

  • Albert P. Santos

    Albert P. Santos

    Flaco

  • Emilio Rivera

    Emilio Rivera

    Jorge

  • Shelly Desai

    Shelly Desai

    Farmer

  • Tony Perez

    Tony Perez

    Mayor

  • Danielle Hartnett

    Danielle Hartnett

    Senorita Magdalena

  • Carlos Moreno Jr.

    Carlos Moreno Jr.

    Jaime

  • Rolando Molina

    Rolando Molina

    Bartender

  • Joe Nuñez

    Joe Nuñez

    Ruben

  • Esteban Cueto

    Esteban Cueto

    El Javelina

  • Thomas Rosales Jr.

    Thomas Rosales Jr.

    Bandito Guard

  • Matt Riedy

    Matt Riedy

    Colonel Dalton

  • Amy Powell

    Amy Powell

    Anchorwoman

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'; ?>
Delta Farce

Cast (38)

  • Larry the Cable Guy

    Larry the Cable Guy

    Larry

  • Bill Engvall

    Bill Engvall

    Bill

  • DJ Qualls

    DJ Qualls

    Everett

  • Christina Moore

    Christina Moore

    Karen

  • Danny Trejo

    Danny Trejo

    Carlos Santana

  • Keith David

    Keith David

    Sgt. Kilgore

  • Jeff Dunham

    Jeff Dunham

    Amazing Ken

  • Ed O'Ross

    Ed O'Ross

    Victor

  • Michael Papajohn

    Michael Papajohn

    Bill's Neighbor

  • Marisol Nichols

    Marisol Nichols

    Maria

  • Glenn Morshower

    Glenn Morshower

    General

  • Michael Rose

    Michael Rose

    Sgt. Major

  • Lorna Scott

    Lorna Scott

    Woman at Cowboy Frank's

  • Parker Goris

    Parker Goris

    Bill's Boy

  • Lisa Lampanelli

    Lisa Lampanelli

    Connie

  • Lance Smith

    Lance Smith

    Sgt. Adams

  • Bill Doyle

    Bill Doyle

    Colonel

  • McKinley Freeman

    McKinley Freeman

    Airborne Soldier

  • Joel McKinnon Miller

    Joel McKinnon Miller

    Pilot

  • Chris Spencer

    Chris Spencer

    Co-Pilot

  • Alejandro Patiño

    Alejandro Patiño

    Juan

  • Luis Chávez

    Luis Chávez

    Carlos

  • David DeSantos

    David DeSantos

    Bandito #3 Ricardo

  • Nicholas Guilak

    Nicholas Guilak

    Luis

  • Toby Holguin

    Toby Holguin

    Bandito #1

  • Jimmy Ortega

    Jimmy Ortega

    Bandito #2

  • Albert P. Santos

    Albert P. Santos

    Flaco

  • Emilio Rivera

    Emilio Rivera

    Jorge

  • Shelly Desai

    Shelly Desai

    Farmer

  • Tony Perez

    Tony Perez

    Mayor

  • Danielle Hartnett

    Danielle Hartnett

    Senorita Magdalena

  • Carlos Moreno Jr.

    Carlos Moreno Jr.

    Jaime

  • Rolando Molina

    Rolando Molina

    Bartender

  • Joe Nuñez

    Joe Nuñez

    Ruben

  • Esteban Cueto

    Esteban Cueto

    El Javelina

  • Thomas Rosales Jr.

    Thomas Rosales Jr.

    Bandito Guard

  • Matt Riedy

    Matt Riedy

    Colonel Dalton

  • Amy Powell

    Amy Powell

    Anchorwoman