Street Law

Cast (37)

  • Jeff Wincott

    Jeff Wincott

    John Ryan

  • Paco Christian Prieto

    Paco Christian Prieto

    Luis Calderone

  • Christina Cox

    Christina Cox

    Kelly

  • Richard Yearwood

    Richard Yearwood

    Michelangelo

  • Michael Copeman

    Michael Copeman

    Joe Baker

  • Douglas O'Keeffe

    Douglas O'Keeffe

    Larry the Lender

  • David Fraser

    David Fraser

    Bradley

  • Hayden Christensen

    Hayden Christensen

    Young John

  • Sugar Bouche

    Sugar Bouche

    Ring Girl (uncredited)

  • Kevin Rushton

    Kevin Rushton

    Blade

  • Raymond Marlowe

    Raymond Marlowe

    Sam Armstrong

  • Dennis O'Connor

    Dennis O'Connor

    Carruthers

  • David James Campbell

    David James Campbell

    Grime

  • Nicu Branzea

    Nicu Branzea

    Tony

  • Stephen Micalchunk

    Stephen Micalchunk

    Gustavo

  • Alessandro Bandiera

    Alessandro Bandiera

    Tommy Vega

  • Géza Kovács

    Géza Kovács

    Andy Giancola

  • Jonathan Fisher

    Jonathan Fisher

    Grey Feather

  • Linda Barnett

    Linda Barnett

    Silvie

  • Kathy Imrie

    Kathy Imrie

    Mrs. Jefferson

  • Gary Rodriguez

    Gary Rodriguez

    Church

  • Marcia Bennett

    Marcia Bennett

    Janice

  • David Nairn

    David Nairn

    Detective Duffus

  • Gene Mack

    Gene Mack

    Marcus

  • Dick Callahan

    Dick Callahan

    Booking Sergeant

  • Will Gehring

    Will Gehring

    Desk Clerk

  • Zion Forrest Lee

    Zion Forrest Lee

    Young Luis Calderone

  • Randy O'Connell

    Randy O'Connell

    Cop

  • Dirk K. Heinze

    Dirk K. Heinze

    Flashback Cop

  • Bruce McFee

    Bruce McFee

    Flashback Detective #1

  • Jerry Levitan

    Jerry Levitan

    Flashback Detective #2

  • Derek Clifford

    Derek Clifford

    Blades 1st Opponent

  • Rogue Johnston

    Rogue Johnston

    Blades 2nd Opponent

  • Michael Boisvert

    Michael Boisvert

    Cop #1

  • Sugar Bouche

    Sugar Bouche

    Ring Girl

  • Will Corno

    Will Corno

    Gang Leader

  • John W. Iwanonkiw

    John W. Iwanonkiw

    Cop at Window

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

Cast (37)

  • Jeff Wincott

    Jeff Wincott

    John Ryan

  • Paco Christian Prieto

    Paco Christian Prieto

    Luis Calderone

  • Christina Cox

    Christina Cox

    Kelly

  • Richard Yearwood

    Richard Yearwood

    Michelangelo

  • Michael Copeman

    Michael Copeman

    Joe Baker

  • Douglas O'Keeffe

    Douglas O'Keeffe

    Larry the Lender

  • David Fraser

    David Fraser

    Bradley

  • Hayden Christensen

    Hayden Christensen

    Young John

  • Sugar Bouche

    Sugar Bouche

    Ring Girl (uncredited)

  • Kevin Rushton

    Kevin Rushton

    Blade

  • Raymond Marlowe

    Raymond Marlowe

    Sam Armstrong

  • Dennis O'Connor

    Dennis O'Connor

    Carruthers

  • David James Campbell

    David James Campbell

    Grime

  • Nicu Branzea

    Nicu Branzea

    Tony

  • Stephen Micalchunk

    Stephen Micalchunk

    Gustavo

  • Alessandro Bandiera

    Alessandro Bandiera

    Tommy Vega

  • Géza Kovács

    Géza Kovács

    Andy Giancola

  • Jonathan Fisher

    Jonathan Fisher

    Grey Feather

  • Linda Barnett

    Linda Barnett

    Silvie

  • Kathy Imrie

    Kathy Imrie

    Mrs. Jefferson

  • Gary Rodriguez

    Gary Rodriguez

    Church

  • Marcia Bennett

    Marcia Bennett

    Janice

  • David Nairn

    David Nairn

    Detective Duffus

  • Gene Mack

    Gene Mack

    Marcus

  • Dick Callahan

    Dick Callahan

    Booking Sergeant

  • Will Gehring

    Will Gehring

    Desk Clerk

  • Zion Forrest Lee

    Zion Forrest Lee

    Young Luis Calderone

  • Randy O'Connell

    Randy O'Connell

    Cop

  • Dirk K. Heinze

    Dirk K. Heinze

    Flashback Cop

  • Bruce McFee

    Bruce McFee

    Flashback Detective #1

  • Jerry Levitan

    Jerry Levitan

    Flashback Detective #2

  • Derek Clifford

    Derek Clifford

    Blades 1st Opponent

  • Rogue Johnston

    Rogue Johnston

    Blades 2nd Opponent

  • Michael Boisvert

    Michael Boisvert

    Cop #1

  • Sugar Bouche

    Sugar Bouche

    Ring Girl

  • Will Corno

    Will Corno

    Gang Leader

  • John W. Iwanonkiw

    John W. Iwanonkiw

    Cop at Window

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

Cast (37)

  • Jeff Wincott

    Jeff Wincott

    John Ryan

  • Paco Christian Prieto

    Paco Christian Prieto

    Luis Calderone

  • Christina Cox

    Christina Cox

    Kelly

  • Richard Yearwood

    Richard Yearwood

    Michelangelo

  • Michael Copeman

    Michael Copeman

    Joe Baker

  • Douglas O'Keeffe

    Douglas O'Keeffe

    Larry the Lender

  • David Fraser

    David Fraser

    Bradley

  • Hayden Christensen

    Hayden Christensen

    Young John

  • Sugar Bouche

    Sugar Bouche

    Ring Girl (uncredited)

  • Kevin Rushton

    Kevin Rushton

    Blade

  • Raymond Marlowe

    Raymond Marlowe

    Sam Armstrong

  • Dennis O'Connor

    Dennis O'Connor

    Carruthers

  • David James Campbell

    David James Campbell

    Grime

  • Nicu Branzea

    Nicu Branzea

    Tony

  • Stephen Micalchunk

    Stephen Micalchunk

    Gustavo

  • Alessandro Bandiera

    Alessandro Bandiera

    Tommy Vega

  • Géza Kovács

    Géza Kovács

    Andy Giancola

  • Jonathan Fisher

    Jonathan Fisher

    Grey Feather

  • Linda Barnett

    Linda Barnett

    Silvie

  • Kathy Imrie

    Kathy Imrie

    Mrs. Jefferson

  • Gary Rodriguez

    Gary Rodriguez

    Church

  • Marcia Bennett

    Marcia Bennett

    Janice

  • David Nairn

    David Nairn

    Detective Duffus

  • Gene Mack

    Gene Mack

    Marcus

  • Dick Callahan

    Dick Callahan

    Booking Sergeant

  • Will Gehring

    Will Gehring

    Desk Clerk

  • Zion Forrest Lee

    Zion Forrest Lee

    Young Luis Calderone

  • Randy O'Connell

    Randy O'Connell

    Cop

  • Dirk K. Heinze

    Dirk K. Heinze

    Flashback Cop

  • Bruce McFee

    Bruce McFee

    Flashback Detective #1

  • Jerry Levitan

    Jerry Levitan

    Flashback Detective #2

  • Derek Clifford

    Derek Clifford

    Blades 1st Opponent

  • Rogue Johnston

    Rogue Johnston

    Blades 2nd Opponent

  • Michael Boisvert

    Michael Boisvert

    Cop #1

  • Sugar Bouche

    Sugar Bouche

    Ring Girl

  • Will Corno

    Will Corno

    Gang Leader

  • John W. Iwanonkiw

    John W. Iwanonkiw

    Cop at Window

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

Cast (37)

  • Jeff Wincott

    Jeff Wincott

    John Ryan

  • Paco Christian Prieto

    Paco Christian Prieto

    Luis Calderone

  • Christina Cox

    Christina Cox

    Kelly

  • Richard Yearwood

    Richard Yearwood

    Michelangelo

  • Michael Copeman

    Michael Copeman

    Joe Baker

  • Douglas O'Keeffe

    Douglas O'Keeffe

    Larry the Lender

  • David Fraser

    David Fraser

    Bradley

  • Hayden Christensen

    Hayden Christensen

    Young John

  • Sugar Bouche

    Sugar Bouche

    Ring Girl (uncredited)

  • Kevin Rushton

    Kevin Rushton

    Blade

  • Raymond Marlowe

    Raymond Marlowe

    Sam Armstrong

  • Dennis O'Connor

    Dennis O'Connor

    Carruthers

  • David James Campbell

    David James Campbell

    Grime

  • Nicu Branzea

    Nicu Branzea

    Tony

  • Stephen Micalchunk

    Stephen Micalchunk

    Gustavo

  • Alessandro Bandiera

    Alessandro Bandiera

    Tommy Vega

  • Géza Kovács

    Géza Kovács

    Andy Giancola

  • Jonathan Fisher

    Jonathan Fisher

    Grey Feather

  • Linda Barnett

    Linda Barnett

    Silvie

  • Kathy Imrie

    Kathy Imrie

    Mrs. Jefferson

  • Gary Rodriguez

    Gary Rodriguez

    Church

  • Marcia Bennett

    Marcia Bennett

    Janice

  • David Nairn

    David Nairn

    Detective Duffus

  • Gene Mack

    Gene Mack

    Marcus

  • Dick Callahan

    Dick Callahan

    Booking Sergeant

  • Will Gehring

    Will Gehring

    Desk Clerk

  • Zion Forrest Lee

    Zion Forrest Lee

    Young Luis Calderone

  • Randy O'Connell

    Randy O'Connell

    Cop

  • Dirk K. Heinze

    Dirk K. Heinze

    Flashback Cop

  • Bruce McFee

    Bruce McFee

    Flashback Detective #1

  • Jerry Levitan

    Jerry Levitan

    Flashback Detective #2

  • Derek Clifford

    Derek Clifford

    Blades 1st Opponent

  • Rogue Johnston

    Rogue Johnston

    Blades 2nd Opponent

  • Michael Boisvert

    Michael Boisvert

    Cop #1

  • Sugar Bouche

    Sugar Bouche

    Ring Girl

  • Will Corno

    Will Corno

    Gang Leader

  • John W. Iwanonkiw

    John W. Iwanonkiw

    Cop at Window

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

Cast (37)

  • Jeff Wincott

    Jeff Wincott

    John Ryan

  • Paco Christian Prieto

    Paco Christian Prieto

    Luis Calderone

  • Christina Cox

    Christina Cox

    Kelly

  • Richard Yearwood

    Richard Yearwood

    Michelangelo

  • Michael Copeman

    Michael Copeman

    Joe Baker

  • Douglas O'Keeffe

    Douglas O'Keeffe

    Larry the Lender

  • David Fraser

    David Fraser

    Bradley

  • Hayden Christensen

    Hayden Christensen

    Young John

  • Sugar Bouche

    Sugar Bouche

    Ring Girl (uncredited)

  • Kevin Rushton

    Kevin Rushton

    Blade

  • Raymond Marlowe

    Raymond Marlowe

    Sam Armstrong

  • Dennis O'Connor

    Dennis O'Connor

    Carruthers

  • David James Campbell

    David James Campbell

    Grime

  • Nicu Branzea

    Nicu Branzea

    Tony

  • Stephen Micalchunk

    Stephen Micalchunk

    Gustavo

  • Alessandro Bandiera

    Alessandro Bandiera

    Tommy Vega

  • Géza Kovács

    Géza Kovács

    Andy Giancola

  • Jonathan Fisher

    Jonathan Fisher

    Grey Feather

  • Linda Barnett

    Linda Barnett

    Silvie

  • Kathy Imrie

    Kathy Imrie

    Mrs. Jefferson

  • Gary Rodriguez

    Gary Rodriguez

    Church

  • Marcia Bennett

    Marcia Bennett

    Janice

  • David Nairn

    David Nairn

    Detective Duffus

  • Gene Mack

    Gene Mack

    Marcus

  • Dick Callahan

    Dick Callahan

    Booking Sergeant

  • Will Gehring

    Will Gehring

    Desk Clerk

  • Zion Forrest Lee

    Zion Forrest Lee

    Young Luis Calderone

  • Randy O'Connell

    Randy O'Connell

    Cop

  • Dirk K. Heinze

    Dirk K. Heinze

    Flashback Cop

  • Bruce McFee

    Bruce McFee

    Flashback Detective #1

  • Jerry Levitan

    Jerry Levitan

    Flashback Detective #2

  • Derek Clifford

    Derek Clifford

    Blades 1st Opponent

  • Rogue Johnston

    Rogue Johnston

    Blades 2nd Opponent

  • Michael Boisvert

    Michael Boisvert

    Cop #1

  • Sugar Bouche

    Sugar Bouche

    Ring Girl

  • Will Corno

    Will Corno

    Gang Leader

  • John W. Iwanonkiw

    John W. Iwanonkiw

    Cop at Window

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

Cast (37)

  • Jeff Wincott

    Jeff Wincott

    John Ryan

  • Paco Christian Prieto

    Paco Christian Prieto

    Luis Calderone

  • Christina Cox

    Christina Cox

    Kelly

  • Richard Yearwood

    Richard Yearwood

    Michelangelo

  • Michael Copeman

    Michael Copeman

    Joe Baker

  • Douglas O'Keeffe

    Douglas O'Keeffe

    Larry the Lender

  • David Fraser

    David Fraser

    Bradley

  • Hayden Christensen

    Hayden Christensen

    Young John

  • Sugar Bouche

    Sugar Bouche

    Ring Girl (uncredited)

  • Kevin Rushton

    Kevin Rushton

    Blade

  • Raymond Marlowe

    Raymond Marlowe

    Sam Armstrong

  • Dennis O'Connor

    Dennis O'Connor

    Carruthers

  • David James Campbell

    David James Campbell

    Grime

  • Nicu Branzea

    Nicu Branzea

    Tony

  • Stephen Micalchunk

    Stephen Micalchunk

    Gustavo

  • Alessandro Bandiera

    Alessandro Bandiera

    Tommy Vega

  • Géza Kovács

    Géza Kovács

    Andy Giancola

  • Jonathan Fisher

    Jonathan Fisher

    Grey Feather

  • Linda Barnett

    Linda Barnett

    Silvie

  • Kathy Imrie

    Kathy Imrie

    Mrs. Jefferson

  • Gary Rodriguez

    Gary Rodriguez

    Church

  • Marcia Bennett

    Marcia Bennett

    Janice

  • David Nairn

    David Nairn

    Detective Duffus

  • Gene Mack

    Gene Mack

    Marcus

  • Dick Callahan

    Dick Callahan

    Booking Sergeant

  • Will Gehring

    Will Gehring

    Desk Clerk

  • Zion Forrest Lee

    Zion Forrest Lee

    Young Luis Calderone

  • Randy O'Connell

    Randy O'Connell

    Cop

  • Dirk K. Heinze

    Dirk K. Heinze

    Flashback Cop

  • Bruce McFee

    Bruce McFee

    Flashback Detective #1

  • Jerry Levitan

    Jerry Levitan

    Flashback Detective #2

  • Derek Clifford

    Derek Clifford

    Blades 1st Opponent

  • Rogue Johnston

    Rogue Johnston

    Blades 2nd Opponent

  • Michael Boisvert

    Michael Boisvert

    Cop #1

  • Sugar Bouche

    Sugar Bouche

    Ring Girl

  • Will Corno

    Will Corno

    Gang Leader

  • John W. Iwanonkiw

    John W. Iwanonkiw

    Cop at Window

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

Cast (37)

  • Jeff Wincott

    Jeff Wincott

    John Ryan

  • Paco Christian Prieto

    Paco Christian Prieto

    Luis Calderone

  • Christina Cox

    Christina Cox

    Kelly

  • Richard Yearwood

    Richard Yearwood

    Michelangelo

  • Michael Copeman

    Michael Copeman

    Joe Baker

  • Douglas O'Keeffe

    Douglas O'Keeffe

    Larry the Lender

  • David Fraser

    David Fraser

    Bradley

  • Hayden Christensen

    Hayden Christensen

    Young John

  • Sugar Bouche

    Sugar Bouche

    Ring Girl (uncredited)

  • Kevin Rushton

    Kevin Rushton

    Blade

  • Raymond Marlowe

    Raymond Marlowe

    Sam Armstrong

  • Dennis O'Connor

    Dennis O'Connor

    Carruthers

  • David James Campbell

    David James Campbell

    Grime

  • Nicu Branzea

    Nicu Branzea

    Tony

  • Stephen Micalchunk

    Stephen Micalchunk

    Gustavo

  • Alessandro Bandiera

    Alessandro Bandiera

    Tommy Vega

  • Géza Kovács

    Géza Kovács

    Andy Giancola

  • Jonathan Fisher

    Jonathan Fisher

    Grey Feather

  • Linda Barnett

    Linda Barnett

    Silvie

  • Kathy Imrie

    Kathy Imrie

    Mrs. Jefferson

  • Gary Rodriguez

    Gary Rodriguez

    Church

  • Marcia Bennett

    Marcia Bennett

    Janice

  • David Nairn

    David Nairn

    Detective Duffus

  • Gene Mack

    Gene Mack

    Marcus

  • Dick Callahan

    Dick Callahan

    Booking Sergeant

  • Will Gehring

    Will Gehring

    Desk Clerk

  • Zion Forrest Lee

    Zion Forrest Lee

    Young Luis Calderone

  • Randy O'Connell

    Randy O'Connell

    Cop

  • Dirk K. Heinze

    Dirk K. Heinze

    Flashback Cop

  • Bruce McFee

    Bruce McFee

    Flashback Detective #1

  • Jerry Levitan

    Jerry Levitan

    Flashback Detective #2

  • Derek Clifford

    Derek Clifford

    Blades 1st Opponent

  • Rogue Johnston

    Rogue Johnston

    Blades 2nd Opponent

  • Michael Boisvert

    Michael Boisvert

    Cop #1

  • Sugar Bouche

    Sugar Bouche

    Ring Girl

  • Will Corno

    Will Corno

    Gang Leader

  • John W. Iwanonkiw

    John W. Iwanonkiw

    Cop at Window