Street Knight

Cast (36)

  • Jeff Speakman

    Jeff Speakman

    Jake Barrett

  • Christopher Neame

    Christopher Neame

    James Franklin

  • Lewis van Bergen

    Lewis van Bergen

    Lt. Bill Crowe

  • Jennifer Gatti

    Jennifer Gatti

    Rebecca Sanchez

  • Bernie Casey

    Bernie Casey

    Raymond

  • Richard Coca

    Richard Coca

    Carlos Sanchez

  • Stephen Liska

    Stephen Liska

    Santino

  • Grainger Hines

    Grainger Hines

    Murphy

  • Sal Landi

    Sal Landi

    Parker

  • Hank Stone

    Hank Stone

    Martin Cruise

  • Julianne Michelle

    Julianne Michelle

    Girl Hostage

  • Tom Magee

    Tom Magee

    Baby Huey

  • Robert Dryer

    Robert Dryer

    Ostrow

  • Mario Roberts

    Mario Roberts

    Charles Lovinger

  • Bob Liles

    Bob Liles

    John Kane

  • Ramón Franco

    Ramón Franco

    Cisco

  • Adam Gifford

    Adam Gifford

    Jesus

  • Claudio Martínez

    Claudio Martínez

    Latin Lord #1

  • Kamar de los Reyes

    Kamar de los Reyes

    Smokey

  • Joey Naber

    Joey Naber

    Little Man

  • Moe Bertran

    Moe Bertran

    Peewee

  • Richard Allen

    Richard Allen

    8 Ball

  • Jeremiah Birkett

    Jeremiah Birkett

    Willy

  • Ángel Vargas

    Ángel Vargas

    Cannon

  • Theo Forsett

    Theo Forsett

    Runner

  • Mushond Lee

    Mushond Lee

    Joker

  • James 'J.T.' Moye

    James 'J.T.' Moye

    Willy's Assistant

  • Marco Rodríguez

    Marco Rodríguez

    Jack Fernandez

  • Ketty Lester

    Ketty Lester

    Lucinda

  • Santos Morales

    Santos Morales

    Emilio

  • Mark DiSalle

    Mark DiSalle

    Security Guard

  • Richard Grove

    Richard Grove

    Madman

  • Joycelyn Engle

    Joycelyn Engle

    Girl's Mother

  • Ann Fairlie

    Ann Fairlie

    Homeless Woman

  • Ginger Marin

    Ginger Marin

    Pedestrian (uncredited)

  • Gregory Schmauss

    Gregory Schmauss

    Police Officer (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'; ?>
Street Knight

Cast (36)

  • Jeff Speakman

    Jeff Speakman

    Jake Barrett

  • Christopher Neame

    Christopher Neame

    James Franklin

  • Lewis van Bergen

    Lewis van Bergen

    Lt. Bill Crowe

  • Jennifer Gatti

    Jennifer Gatti

    Rebecca Sanchez

  • Bernie Casey

    Bernie Casey

    Raymond

  • Richard Coca

    Richard Coca

    Carlos Sanchez

  • Stephen Liska

    Stephen Liska

    Santino

  • Grainger Hines

    Grainger Hines

    Murphy

  • Sal Landi

    Sal Landi

    Parker

  • Hank Stone

    Hank Stone

    Martin Cruise

  • Julianne Michelle

    Julianne Michelle

    Girl Hostage

  • Tom Magee

    Tom Magee

    Baby Huey

  • Robert Dryer

    Robert Dryer

    Ostrow

  • Mario Roberts

    Mario Roberts

    Charles Lovinger

  • Bob Liles

    Bob Liles

    John Kane

  • Ramón Franco

    Ramón Franco

    Cisco

  • Adam Gifford

    Adam Gifford

    Jesus

  • Claudio Martínez

    Claudio Martínez

    Latin Lord #1

  • Kamar de los Reyes

    Kamar de los Reyes

    Smokey

  • Joey Naber

    Joey Naber

    Little Man

  • Moe Bertran

    Moe Bertran

    Peewee

  • Richard Allen

    Richard Allen

    8 Ball

  • Jeremiah Birkett

    Jeremiah Birkett

    Willy

  • Ángel Vargas

    Ángel Vargas

    Cannon

  • Theo Forsett

    Theo Forsett

    Runner

  • Mushond Lee

    Mushond Lee

    Joker

  • James 'J.T.' Moye

    James 'J.T.' Moye

    Willy's Assistant

  • Marco Rodríguez

    Marco Rodríguez

    Jack Fernandez

  • Ketty Lester

    Ketty Lester

    Lucinda

  • Santos Morales

    Santos Morales

    Emilio

  • Mark DiSalle

    Mark DiSalle

    Security Guard

  • Richard Grove

    Richard Grove

    Madman

  • Joycelyn Engle

    Joycelyn Engle

    Girl's Mother

  • Ann Fairlie

    Ann Fairlie

    Homeless Woman

  • Ginger Marin

    Ginger Marin

    Pedestrian (uncredited)

  • Gregory Schmauss

    Gregory Schmauss

    Police Officer (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'; ?>
Street Knight

Cast (36)

  • Jeff Speakman

    Jeff Speakman

    Jake Barrett

  • Christopher Neame

    Christopher Neame

    James Franklin

  • Lewis van Bergen

    Lewis van Bergen

    Lt. Bill Crowe

  • Jennifer Gatti

    Jennifer Gatti

    Rebecca Sanchez

  • Bernie Casey

    Bernie Casey

    Raymond

  • Richard Coca

    Richard Coca

    Carlos Sanchez

  • Stephen Liska

    Stephen Liska

    Santino

  • Grainger Hines

    Grainger Hines

    Murphy

  • Sal Landi

    Sal Landi

    Parker

  • Hank Stone

    Hank Stone

    Martin Cruise

  • Julianne Michelle

    Julianne Michelle

    Girl Hostage

  • Tom Magee

    Tom Magee

    Baby Huey

  • Robert Dryer

    Robert Dryer

    Ostrow

  • Mario Roberts

    Mario Roberts

    Charles Lovinger

  • Bob Liles

    Bob Liles

    John Kane

  • Ramón Franco

    Ramón Franco

    Cisco

  • Adam Gifford

    Adam Gifford

    Jesus

  • Claudio Martínez

    Claudio Martínez

    Latin Lord #1

  • Kamar de los Reyes

    Kamar de los Reyes

    Smokey

  • Joey Naber

    Joey Naber

    Little Man

  • Moe Bertran

    Moe Bertran

    Peewee

  • Richard Allen

    Richard Allen

    8 Ball

  • Jeremiah Birkett

    Jeremiah Birkett

    Willy

  • Ángel Vargas

    Ángel Vargas

    Cannon

  • Theo Forsett

    Theo Forsett

    Runner

  • Mushond Lee

    Mushond Lee

    Joker

  • James 'J.T.' Moye

    James 'J.T.' Moye

    Willy's Assistant

  • Marco Rodríguez

    Marco Rodríguez

    Jack Fernandez

  • Ketty Lester

    Ketty Lester

    Lucinda

  • Santos Morales

    Santos Morales

    Emilio

  • Mark DiSalle

    Mark DiSalle

    Security Guard

  • Richard Grove

    Richard Grove

    Madman

  • Joycelyn Engle

    Joycelyn Engle

    Girl's Mother

  • Ann Fairlie

    Ann Fairlie

    Homeless Woman

  • Ginger Marin

    Ginger Marin

    Pedestrian (uncredited)

  • Gregory Schmauss

    Gregory Schmauss

    Police Officer (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'; ?>
Street Knight

Cast (36)

  • Jeff Speakman

    Jeff Speakman

    Jake Barrett

  • Christopher Neame

    Christopher Neame

    James Franklin

  • Lewis van Bergen

    Lewis van Bergen

    Lt. Bill Crowe

  • Jennifer Gatti

    Jennifer Gatti

    Rebecca Sanchez

  • Bernie Casey

    Bernie Casey

    Raymond

  • Richard Coca

    Richard Coca

    Carlos Sanchez

  • Stephen Liska

    Stephen Liska

    Santino

  • Grainger Hines

    Grainger Hines

    Murphy

  • Sal Landi

    Sal Landi

    Parker

  • Hank Stone

    Hank Stone

    Martin Cruise

  • Julianne Michelle

    Julianne Michelle

    Girl Hostage

  • Tom Magee

    Tom Magee

    Baby Huey

  • Robert Dryer

    Robert Dryer

    Ostrow

  • Mario Roberts

    Mario Roberts

    Charles Lovinger

  • Bob Liles

    Bob Liles

    John Kane

  • Ramón Franco

    Ramón Franco

    Cisco

  • Adam Gifford

    Adam Gifford

    Jesus

  • Claudio Martínez

    Claudio Martínez

    Latin Lord #1

  • Kamar de los Reyes

    Kamar de los Reyes

    Smokey

  • Joey Naber

    Joey Naber

    Little Man

  • Moe Bertran

    Moe Bertran

    Peewee

  • Richard Allen

    Richard Allen

    8 Ball

  • Jeremiah Birkett

    Jeremiah Birkett

    Willy

  • Ángel Vargas

    Ángel Vargas

    Cannon

  • Theo Forsett

    Theo Forsett

    Runner

  • Mushond Lee

    Mushond Lee

    Joker

  • James 'J.T.' Moye

    James 'J.T.' Moye

    Willy's Assistant

  • Marco Rodríguez

    Marco Rodríguez

    Jack Fernandez

  • Ketty Lester

    Ketty Lester

    Lucinda

  • Santos Morales

    Santos Morales

    Emilio

  • Mark DiSalle

    Mark DiSalle

    Security Guard

  • Richard Grove

    Richard Grove

    Madman

  • Joycelyn Engle

    Joycelyn Engle

    Girl's Mother

  • Ann Fairlie

    Ann Fairlie

    Homeless Woman

  • Ginger Marin

    Ginger Marin

    Pedestrian (uncredited)

  • Gregory Schmauss

    Gregory Schmauss

    Police Officer (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'; ?>
Street Knight

Cast (36)

  • Jeff Speakman

    Jeff Speakman

    Jake Barrett

  • Christopher Neame

    Christopher Neame

    James Franklin

  • Lewis van Bergen

    Lewis van Bergen

    Lt. Bill Crowe

  • Jennifer Gatti

    Jennifer Gatti

    Rebecca Sanchez

  • Bernie Casey

    Bernie Casey

    Raymond

  • Richard Coca

    Richard Coca

    Carlos Sanchez

  • Stephen Liska

    Stephen Liska

    Santino

  • Grainger Hines

    Grainger Hines

    Murphy

  • Sal Landi

    Sal Landi

    Parker

  • Hank Stone

    Hank Stone

    Martin Cruise

  • Julianne Michelle

    Julianne Michelle

    Girl Hostage

  • Tom Magee

    Tom Magee

    Baby Huey

  • Robert Dryer

    Robert Dryer

    Ostrow

  • Mario Roberts

    Mario Roberts

    Charles Lovinger

  • Bob Liles

    Bob Liles

    John Kane

  • Ramón Franco

    Ramón Franco

    Cisco

  • Adam Gifford

    Adam Gifford

    Jesus

  • Claudio Martínez

    Claudio Martínez

    Latin Lord #1

  • Kamar de los Reyes

    Kamar de los Reyes

    Smokey

  • Joey Naber

    Joey Naber

    Little Man

  • Moe Bertran

    Moe Bertran

    Peewee

  • Richard Allen

    Richard Allen

    8 Ball

  • Jeremiah Birkett

    Jeremiah Birkett

    Willy

  • Ángel Vargas

    Ángel Vargas

    Cannon

  • Theo Forsett

    Theo Forsett

    Runner

  • Mushond Lee

    Mushond Lee

    Joker

  • James 'J.T.' Moye

    James 'J.T.' Moye

    Willy's Assistant

  • Marco Rodríguez

    Marco Rodríguez

    Jack Fernandez

  • Ketty Lester

    Ketty Lester

    Lucinda

  • Santos Morales

    Santos Morales

    Emilio

  • Mark DiSalle

    Mark DiSalle

    Security Guard

  • Richard Grove

    Richard Grove

    Madman

  • Joycelyn Engle

    Joycelyn Engle

    Girl's Mother

  • Ann Fairlie

    Ann Fairlie

    Homeless Woman

  • Ginger Marin

    Ginger Marin

    Pedestrian (uncredited)

  • Gregory Schmauss

    Gregory Schmauss

    Police Officer (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'; ?>
Street Knight

Cast (36)

  • Jeff Speakman

    Jeff Speakman

    Jake Barrett

  • Christopher Neame

    Christopher Neame

    James Franklin

  • Lewis van Bergen

    Lewis van Bergen

    Lt. Bill Crowe

  • Jennifer Gatti

    Jennifer Gatti

    Rebecca Sanchez

  • Bernie Casey

    Bernie Casey

    Raymond

  • Richard Coca

    Richard Coca

    Carlos Sanchez

  • Stephen Liska

    Stephen Liska

    Santino

  • Grainger Hines

    Grainger Hines

    Murphy

  • Sal Landi

    Sal Landi

    Parker

  • Hank Stone

    Hank Stone

    Martin Cruise

  • Julianne Michelle

    Julianne Michelle

    Girl Hostage

  • Tom Magee

    Tom Magee

    Baby Huey

  • Robert Dryer

    Robert Dryer

    Ostrow

  • Mario Roberts

    Mario Roberts

    Charles Lovinger

  • Bob Liles

    Bob Liles

    John Kane

  • Ramón Franco

    Ramón Franco

    Cisco

  • Adam Gifford

    Adam Gifford

    Jesus

  • Claudio Martínez

    Claudio Martínez

    Latin Lord #1

  • Kamar de los Reyes

    Kamar de los Reyes

    Smokey

  • Joey Naber

    Joey Naber

    Little Man

  • Moe Bertran

    Moe Bertran

    Peewee

  • Richard Allen

    Richard Allen

    8 Ball

  • Jeremiah Birkett

    Jeremiah Birkett

    Willy

  • Ángel Vargas

    Ángel Vargas

    Cannon

  • Theo Forsett

    Theo Forsett

    Runner

  • Mushond Lee

    Mushond Lee

    Joker

  • James 'J.T.' Moye

    James 'J.T.' Moye

    Willy's Assistant

  • Marco Rodríguez

    Marco Rodríguez

    Jack Fernandez

  • Ketty Lester

    Ketty Lester

    Lucinda

  • Santos Morales

    Santos Morales

    Emilio

  • Mark DiSalle

    Mark DiSalle

    Security Guard

  • Richard Grove

    Richard Grove

    Madman

  • Joycelyn Engle

    Joycelyn Engle

    Girl's Mother

  • Ann Fairlie

    Ann Fairlie

    Homeless Woman

  • Ginger Marin

    Ginger Marin

    Pedestrian (uncredited)

  • Gregory Schmauss

    Gregory Schmauss

    Police Officer (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'; ?>
Street Knight

Cast (36)

  • Jeff Speakman

    Jeff Speakman

    Jake Barrett

  • Christopher Neame

    Christopher Neame

    James Franklin

  • Lewis van Bergen

    Lewis van Bergen

    Lt. Bill Crowe

  • Jennifer Gatti

    Jennifer Gatti

    Rebecca Sanchez

  • Bernie Casey

    Bernie Casey

    Raymond

  • Richard Coca

    Richard Coca

    Carlos Sanchez

  • Stephen Liska

    Stephen Liska

    Santino

  • Grainger Hines

    Grainger Hines

    Murphy

  • Sal Landi

    Sal Landi

    Parker

  • Hank Stone

    Hank Stone

    Martin Cruise

  • Julianne Michelle

    Julianne Michelle

    Girl Hostage

  • Tom Magee

    Tom Magee

    Baby Huey

  • Robert Dryer

    Robert Dryer

    Ostrow

  • Mario Roberts

    Mario Roberts

    Charles Lovinger

  • Bob Liles

    Bob Liles

    John Kane

  • Ramón Franco

    Ramón Franco

    Cisco

  • Adam Gifford

    Adam Gifford

    Jesus

  • Claudio Martínez

    Claudio Martínez

    Latin Lord #1

  • Kamar de los Reyes

    Kamar de los Reyes

    Smokey

  • Joey Naber

    Joey Naber

    Little Man

  • Moe Bertran

    Moe Bertran

    Peewee

  • Richard Allen

    Richard Allen

    8 Ball

  • Jeremiah Birkett

    Jeremiah Birkett

    Willy

  • Ángel Vargas

    Ángel Vargas

    Cannon

  • Theo Forsett

    Theo Forsett

    Runner

  • Mushond Lee

    Mushond Lee

    Joker

  • James 'J.T.' Moye

    James 'J.T.' Moye

    Willy's Assistant

  • Marco Rodríguez

    Marco Rodríguez

    Jack Fernandez

  • Ketty Lester

    Ketty Lester

    Lucinda

  • Santos Morales

    Santos Morales

    Emilio

  • Mark DiSalle

    Mark DiSalle

    Security Guard

  • Richard Grove

    Richard Grove

    Madman

  • Joycelyn Engle

    Joycelyn Engle

    Girl's Mother

  • Ann Fairlie

    Ann Fairlie

    Homeless Woman

  • Ginger Marin

    Ginger Marin

    Pedestrian (uncredited)

  • Gregory Schmauss

    Gregory Schmauss

    Police Officer (uncredited)