Law and Disorder

Cast (41)

  • Carroll O'Connor

    Carroll O'Connor

    Willie

  • Ernest Borgnine

    Ernest Borgnine

    Cy

  • Karen Black

    Karen Black

    Gloria

  • Ann Wedgeworth

    Ann Wedgeworth

    Sally

  • Anita Dangler

    Anita Dangler

    Irene

  • Leslie Ackerman

    Leslie Ackerman

    Karen

  • Jack Kehoe

    Jack Kehoe

    Elliott

  • David Spielberg

    David Spielberg

    Bobby

  • Joseph Ragno

    Joseph Ragno

    Peter

  • Lionel Pina

    Lionel Pina

    Chico

  • Gary Springer

    Gary Springer

    F.U. Kid

  • Allan Arbus

    Allan Arbus

    Dr. Richter

  • Rita Gam

    Rita Gam

    Woman in Cab

  • Jack Stamberger

    Jack Stamberger

    Morris

  • William Richert

    William Richert

    Desk Sergeant

  • Jay Fletcher

    Jay Fletcher

    Jogger

  • Shirley Stoler

    Shirley Stoler

    Town Hall Attendee (uncredited)

  • Pat Corley

    Pat Corley

    Ken

  • J. Frank Lucas

    J. Frank Lucas

    Flasher

  • Edward Grover

    Edward Grover

    Capt Malloy

  • Pepper Wormser

    Pepper Wormser

    Yablonsky

  • Ed Madsen

    Ed Madsen

    Frank

  • Adam Lessuck

    Adam Lessuck

    Eddie

  • Sydney Sherriff

    Sydney Sherriff

    Ralph

  • Teodorina Bello

    Teodorina Bello

    Chico's Mom

  • Peter Lago

    Peter Lago

    Chico's Dad

  • Michael Medwin

    Michael Medwin

    Man In Cab

  • Rudy Bond

    Rudy Bond

  • Ric Mancini

    Ric Mancini

  • Cassandra Danz

    Cassandra Danz

    Tenant Protestor

  • William Duell

    William Duell

  • Joan Porter

    Joan Porter

  • Martin Garner

    Martin Garner

  • Melody Santangello

    Melody Santangello

  • Gene Gross

    Gene Gross

  • Ben Slack

    Ben Slack

  • Ralph Hall

    Ralph Hall

  • Al Stellone

    Al Stellone

  • Sheila Kotkin

    Sheila Kotkin

  • Alex Stevens

    Alex Stevens

  • Raymond Martino

    Raymond Martino

    Willie Bongo

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'; ?>
Law and Disorder

Cast (41)

  • Carroll O'Connor

    Carroll O'Connor

    Willie

  • Ernest Borgnine

    Ernest Borgnine

    Cy

  • Karen Black

    Karen Black

    Gloria

  • Ann Wedgeworth

    Ann Wedgeworth

    Sally

  • Anita Dangler

    Anita Dangler

    Irene

  • Leslie Ackerman

    Leslie Ackerman

    Karen

  • Jack Kehoe

    Jack Kehoe

    Elliott

  • David Spielberg

    David Spielberg

    Bobby

  • Joseph Ragno

    Joseph Ragno

    Peter

  • Lionel Pina

    Lionel Pina

    Chico

  • Gary Springer

    Gary Springer

    F.U. Kid

  • Allan Arbus

    Allan Arbus

    Dr. Richter

  • Rita Gam

    Rita Gam

    Woman in Cab

  • Jack Stamberger

    Jack Stamberger

    Morris

  • William Richert

    William Richert

    Desk Sergeant

  • Jay Fletcher

    Jay Fletcher

    Jogger

  • Shirley Stoler

    Shirley Stoler

    Town Hall Attendee (uncredited)

  • Pat Corley

    Pat Corley

    Ken

  • J. Frank Lucas

    J. Frank Lucas

    Flasher

  • Edward Grover

    Edward Grover

    Capt Malloy

  • Pepper Wormser

    Pepper Wormser

    Yablonsky

  • Ed Madsen

    Ed Madsen

    Frank

  • Adam Lessuck

    Adam Lessuck

    Eddie

  • Sydney Sherriff

    Sydney Sherriff

    Ralph

  • Teodorina Bello

    Teodorina Bello

    Chico's Mom

  • Peter Lago

    Peter Lago

    Chico's Dad

  • Michael Medwin

    Michael Medwin

    Man In Cab

  • Rudy Bond

    Rudy Bond

  • Ric Mancini

    Ric Mancini

  • Cassandra Danz

    Cassandra Danz

    Tenant Protestor

  • William Duell

    William Duell

  • Joan Porter

    Joan Porter

  • Martin Garner

    Martin Garner

  • Melody Santangello

    Melody Santangello

  • Gene Gross

    Gene Gross

  • Ben Slack

    Ben Slack

  • Ralph Hall

    Ralph Hall

  • Al Stellone

    Al Stellone

  • Sheila Kotkin

    Sheila Kotkin

  • Alex Stevens

    Alex Stevens

  • Raymond Martino

    Raymond Martino

    Willie Bongo

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'; ?>
Law and Disorder

Cast (41)

  • Carroll O'Connor

    Carroll O'Connor

    Willie

  • Ernest Borgnine

    Ernest Borgnine

    Cy

  • Karen Black

    Karen Black

    Gloria

  • Ann Wedgeworth

    Ann Wedgeworth

    Sally

  • Anita Dangler

    Anita Dangler

    Irene

  • Leslie Ackerman

    Leslie Ackerman

    Karen

  • Jack Kehoe

    Jack Kehoe

    Elliott

  • David Spielberg

    David Spielberg

    Bobby

  • Joseph Ragno

    Joseph Ragno

    Peter

  • Lionel Pina

    Lionel Pina

    Chico

  • Gary Springer

    Gary Springer

    F.U. Kid

  • Allan Arbus

    Allan Arbus

    Dr. Richter

  • Rita Gam

    Rita Gam

    Woman in Cab

  • Jack Stamberger

    Jack Stamberger

    Morris

  • William Richert

    William Richert

    Desk Sergeant

  • Jay Fletcher

    Jay Fletcher

    Jogger

  • Shirley Stoler

    Shirley Stoler

    Town Hall Attendee (uncredited)

  • Pat Corley

    Pat Corley

    Ken

  • J. Frank Lucas

    J. Frank Lucas

    Flasher

  • Edward Grover

    Edward Grover

    Capt Malloy

  • Pepper Wormser

    Pepper Wormser

    Yablonsky

  • Ed Madsen

    Ed Madsen

    Frank

  • Adam Lessuck

    Adam Lessuck

    Eddie

  • Sydney Sherriff

    Sydney Sherriff

    Ralph

  • Teodorina Bello

    Teodorina Bello

    Chico's Mom

  • Peter Lago

    Peter Lago

    Chico's Dad

  • Michael Medwin

    Michael Medwin

    Man In Cab

  • Rudy Bond

    Rudy Bond

  • Ric Mancini

    Ric Mancini

  • Cassandra Danz

    Cassandra Danz

    Tenant Protestor

  • William Duell

    William Duell

  • Joan Porter

    Joan Porter

  • Martin Garner

    Martin Garner

  • Melody Santangello

    Melody Santangello

  • Gene Gross

    Gene Gross

  • Ben Slack

    Ben Slack

  • Ralph Hall

    Ralph Hall

  • Al Stellone

    Al Stellone

  • Sheila Kotkin

    Sheila Kotkin

  • Alex Stevens

    Alex Stevens

  • Raymond Martino

    Raymond Martino

    Willie Bongo

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'; ?>
Law and Disorder

Cast (41)

  • Carroll O'Connor

    Carroll O'Connor

    Willie

  • Ernest Borgnine

    Ernest Borgnine

    Cy

  • Karen Black

    Karen Black

    Gloria

  • Ann Wedgeworth

    Ann Wedgeworth

    Sally

  • Anita Dangler

    Anita Dangler

    Irene

  • Leslie Ackerman

    Leslie Ackerman

    Karen

  • Jack Kehoe

    Jack Kehoe

    Elliott

  • David Spielberg

    David Spielberg

    Bobby

  • Joseph Ragno

    Joseph Ragno

    Peter

  • Lionel Pina

    Lionel Pina

    Chico

  • Gary Springer

    Gary Springer

    F.U. Kid

  • Allan Arbus

    Allan Arbus

    Dr. Richter

  • Rita Gam

    Rita Gam

    Woman in Cab

  • Jack Stamberger

    Jack Stamberger

    Morris

  • William Richert

    William Richert

    Desk Sergeant

  • Jay Fletcher

    Jay Fletcher

    Jogger

  • Shirley Stoler

    Shirley Stoler

    Town Hall Attendee (uncredited)

  • Pat Corley

    Pat Corley

    Ken

  • J. Frank Lucas

    J. Frank Lucas

    Flasher

  • Edward Grover

    Edward Grover

    Capt Malloy

  • Pepper Wormser

    Pepper Wormser

    Yablonsky

  • Ed Madsen

    Ed Madsen

    Frank

  • Adam Lessuck

    Adam Lessuck

    Eddie

  • Sydney Sherriff

    Sydney Sherriff

    Ralph

  • Teodorina Bello

    Teodorina Bello

    Chico's Mom

  • Peter Lago

    Peter Lago

    Chico's Dad

  • Michael Medwin

    Michael Medwin

    Man In Cab

  • Rudy Bond

    Rudy Bond

  • Ric Mancini

    Ric Mancini

  • Cassandra Danz

    Cassandra Danz

    Tenant Protestor

  • William Duell

    William Duell

  • Joan Porter

    Joan Porter

  • Martin Garner

    Martin Garner

  • Melody Santangello

    Melody Santangello

  • Gene Gross

    Gene Gross

  • Ben Slack

    Ben Slack

  • Ralph Hall

    Ralph Hall

  • Al Stellone

    Al Stellone

  • Sheila Kotkin

    Sheila Kotkin

  • Alex Stevens

    Alex Stevens

  • Raymond Martino

    Raymond Martino

    Willie Bongo

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'; ?>
Law and Disorder

Cast (41)

  • Carroll O'Connor

    Carroll O'Connor

    Willie

  • Ernest Borgnine

    Ernest Borgnine

    Cy

  • Karen Black

    Karen Black

    Gloria

  • Ann Wedgeworth

    Ann Wedgeworth

    Sally

  • Anita Dangler

    Anita Dangler

    Irene

  • Leslie Ackerman

    Leslie Ackerman

    Karen

  • Jack Kehoe

    Jack Kehoe

    Elliott

  • David Spielberg

    David Spielberg

    Bobby

  • Joseph Ragno

    Joseph Ragno

    Peter

  • Lionel Pina

    Lionel Pina

    Chico

  • Gary Springer

    Gary Springer

    F.U. Kid

  • Allan Arbus

    Allan Arbus

    Dr. Richter

  • Rita Gam

    Rita Gam

    Woman in Cab

  • Jack Stamberger

    Jack Stamberger

    Morris

  • William Richert

    William Richert

    Desk Sergeant

  • Jay Fletcher

    Jay Fletcher

    Jogger

  • Shirley Stoler

    Shirley Stoler

    Town Hall Attendee (uncredited)

  • Pat Corley

    Pat Corley

    Ken

  • J. Frank Lucas

    J. Frank Lucas

    Flasher

  • Edward Grover

    Edward Grover

    Capt Malloy

  • Pepper Wormser

    Pepper Wormser

    Yablonsky

  • Ed Madsen

    Ed Madsen

    Frank

  • Adam Lessuck

    Adam Lessuck

    Eddie

  • Sydney Sherriff

    Sydney Sherriff

    Ralph

  • Teodorina Bello

    Teodorina Bello

    Chico's Mom

  • Peter Lago

    Peter Lago

    Chico's Dad

  • Michael Medwin

    Michael Medwin

    Man In Cab

  • Rudy Bond

    Rudy Bond

  • Ric Mancini

    Ric Mancini

  • Cassandra Danz

    Cassandra Danz

    Tenant Protestor

  • William Duell

    William Duell

  • Joan Porter

    Joan Porter

  • Martin Garner

    Martin Garner

  • Melody Santangello

    Melody Santangello

  • Gene Gross

    Gene Gross

  • Ben Slack

    Ben Slack

  • Ralph Hall

    Ralph Hall

  • Al Stellone

    Al Stellone

  • Sheila Kotkin

    Sheila Kotkin

  • Alex Stevens

    Alex Stevens

  • Raymond Martino

    Raymond Martino

    Willie Bongo

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'; ?>
Law and Disorder

Cast (41)

  • Carroll O'Connor

    Carroll O'Connor

    Willie

  • Ernest Borgnine

    Ernest Borgnine

    Cy

  • Karen Black

    Karen Black

    Gloria

  • Ann Wedgeworth

    Ann Wedgeworth

    Sally

  • Anita Dangler

    Anita Dangler

    Irene

  • Leslie Ackerman

    Leslie Ackerman

    Karen

  • Jack Kehoe

    Jack Kehoe

    Elliott

  • David Spielberg

    David Spielberg

    Bobby

  • Joseph Ragno

    Joseph Ragno

    Peter

  • Lionel Pina

    Lionel Pina

    Chico

  • Gary Springer

    Gary Springer

    F.U. Kid

  • Allan Arbus

    Allan Arbus

    Dr. Richter

  • Rita Gam

    Rita Gam

    Woman in Cab

  • Jack Stamberger

    Jack Stamberger

    Morris

  • William Richert

    William Richert

    Desk Sergeant

  • Jay Fletcher

    Jay Fletcher

    Jogger

  • Shirley Stoler

    Shirley Stoler

    Town Hall Attendee (uncredited)

  • Pat Corley

    Pat Corley

    Ken

  • J. Frank Lucas

    J. Frank Lucas

    Flasher

  • Edward Grover

    Edward Grover

    Capt Malloy

  • Pepper Wormser

    Pepper Wormser

    Yablonsky

  • Ed Madsen

    Ed Madsen

    Frank

  • Adam Lessuck

    Adam Lessuck

    Eddie

  • Sydney Sherriff

    Sydney Sherriff

    Ralph

  • Teodorina Bello

    Teodorina Bello

    Chico's Mom

  • Peter Lago

    Peter Lago

    Chico's Dad

  • Michael Medwin

    Michael Medwin

    Man In Cab

  • Rudy Bond

    Rudy Bond

  • Ric Mancini

    Ric Mancini

  • Cassandra Danz

    Cassandra Danz

    Tenant Protestor

  • William Duell

    William Duell

  • Joan Porter

    Joan Porter

  • Martin Garner

    Martin Garner

  • Melody Santangello

    Melody Santangello

  • Gene Gross

    Gene Gross

  • Ben Slack

    Ben Slack

  • Ralph Hall

    Ralph Hall

  • Al Stellone

    Al Stellone

  • Sheila Kotkin

    Sheila Kotkin

  • Alex Stevens

    Alex Stevens

  • Raymond Martino

    Raymond Martino

    Willie Bongo

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'; ?>
Law and Disorder

Cast (41)

  • Carroll O'Connor

    Carroll O'Connor

    Willie

  • Ernest Borgnine

    Ernest Borgnine

    Cy

  • Karen Black

    Karen Black

    Gloria

  • Ann Wedgeworth

    Ann Wedgeworth

    Sally

  • Anita Dangler

    Anita Dangler

    Irene

  • Leslie Ackerman

    Leslie Ackerman

    Karen

  • Jack Kehoe

    Jack Kehoe

    Elliott

  • David Spielberg

    David Spielberg

    Bobby

  • Joseph Ragno

    Joseph Ragno

    Peter

  • Lionel Pina

    Lionel Pina

    Chico

  • Gary Springer

    Gary Springer

    F.U. Kid

  • Allan Arbus

    Allan Arbus

    Dr. Richter

  • Rita Gam

    Rita Gam

    Woman in Cab

  • Jack Stamberger

    Jack Stamberger

    Morris

  • William Richert

    William Richert

    Desk Sergeant

  • Jay Fletcher

    Jay Fletcher

    Jogger

  • Shirley Stoler

    Shirley Stoler

    Town Hall Attendee (uncredited)

  • Pat Corley

    Pat Corley

    Ken

  • J. Frank Lucas

    J. Frank Lucas

    Flasher

  • Edward Grover

    Edward Grover

    Capt Malloy

  • Pepper Wormser

    Pepper Wormser

    Yablonsky

  • Ed Madsen

    Ed Madsen

    Frank

  • Adam Lessuck

    Adam Lessuck

    Eddie

  • Sydney Sherriff

    Sydney Sherriff

    Ralph

  • Teodorina Bello

    Teodorina Bello

    Chico's Mom

  • Peter Lago

    Peter Lago

    Chico's Dad

  • Michael Medwin

    Michael Medwin

    Man In Cab

  • Rudy Bond

    Rudy Bond

  • Ric Mancini

    Ric Mancini

  • Cassandra Danz

    Cassandra Danz

    Tenant Protestor

  • William Duell

    William Duell

  • Joan Porter

    Joan Porter

  • Martin Garner

    Martin Garner

  • Melody Santangello

    Melody Santangello

  • Gene Gross

    Gene Gross

  • Ben Slack

    Ben Slack

  • Ralph Hall

    Ralph Hall

  • Al Stellone

    Al Stellone

  • Sheila Kotkin

    Sheila Kotkin

  • Alex Stevens

    Alex Stevens

  • Raymond Martino

    Raymond Martino

    Willie Bongo