The Thirteenth Floor

Cast (33)

  • Craig Bierko

    Craig Bierko

    Douglas Hall

  • Armin Mueller-Stahl

    Armin Mueller-Stahl

    Hannon Fuller

  • Gretchen Mol

    Gretchen Mol

    Jane Fuller

  • Vincent D'Onofrio

    Vincent D'Onofrio

    Whitney

  • Dennis Haysbert

    Dennis Haysbert

    Det. Larry McBain

  • Steven Schub

    Steven Schub

    Det. Zev Bernstein

  • Jeremy Roberts

    Jeremy Roberts

    Tom Jones

  • Rif Hutton

    Rif Hutton

    Joe

  • Leon Rippy

    Leon Rippy

    Jane's Lawyer

  • Janet MacLachlan

    Janet MacLachlan

    Ellen

  • Brad William Henke

    Brad William Henke

    Cop

  • Burt Bulos

    Burt Bulos

    Bellhop

  • Venessia Valentino

    Venessia Valentino

    Concierge

  • Howard S. Miller

    Howard S. Miller

    Chauffeur

  • Tia Texada

    Tia Texada

    Natasha's Roommate

  • Shiri Appleby

    Shiri Appleby

    Bridget Manilla

  • Bob Clendenin

    Bob Clendenin

    Bank Manager

  • Rachel Winfree

    Rachel Winfree

    Woman Bank Customer

  • Meghan Ivey

    Meghan Ivey

    Chanteuse

  • Alison Lohman

    Alison Lohman

    Honey Bear Girl

  • Hadda Brooks

    Hadda Brooks

    Lounge Piano Player

  • Ron Boussom

    Ron Boussom

    Maitre D'

  • Ernie Lively

    Ernie Lively

    30's Cop

  • Toni Sawyer

    Toni Sawyer

    Grierson's Wife

  • Brooks Almy

    Brooks Almy

    Bridget's Mom

  • Darryl Henriques

    Darryl Henriques

    Cab Driver

  • Suzanne Harrer

    Suzanne Harrer

    Dance Contest Partner

  • Lee Weaver

    Lee Weaver

    30's Limo Driver

  • Geoffrey Rivas

    Geoffrey Rivas

    Security Guard

  • Travis Tedford

    Travis Tedford

    Newspaper Boy

  • Jeff Blumenkrantz

    Jeff Blumenkrantz

    Choreographer

  • Andrew Alden

    Andrew Alden

    Doorman

  • Johnny Crawford

    Johnny Crawford

    Singer

Crew (92)

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'; ?>
The Thirteenth Floor

Cast (33)

  • Craig Bierko

    Craig Bierko

    Douglas Hall

  • Armin Mueller-Stahl

    Armin Mueller-Stahl

    Hannon Fuller

  • Gretchen Mol

    Gretchen Mol

    Jane Fuller

  • Vincent D'Onofrio

    Vincent D'Onofrio

    Whitney

  • Dennis Haysbert

    Dennis Haysbert

    Det. Larry McBain

  • Steven Schub

    Steven Schub

    Det. Zev Bernstein

  • Jeremy Roberts

    Jeremy Roberts

    Tom Jones

  • Rif Hutton

    Rif Hutton

    Joe

  • Leon Rippy

    Leon Rippy

    Jane's Lawyer

  • Janet MacLachlan

    Janet MacLachlan

    Ellen

  • Brad William Henke

    Brad William Henke

    Cop

  • Burt Bulos

    Burt Bulos

    Bellhop

  • Venessia Valentino

    Venessia Valentino

    Concierge

  • Howard S. Miller

    Howard S. Miller

    Chauffeur

  • Tia Texada

    Tia Texada

    Natasha's Roommate

  • Shiri Appleby

    Shiri Appleby

    Bridget Manilla

  • Bob Clendenin

    Bob Clendenin

    Bank Manager

  • Rachel Winfree

    Rachel Winfree

    Woman Bank Customer

  • Meghan Ivey

    Meghan Ivey

    Chanteuse

  • Alison Lohman

    Alison Lohman

    Honey Bear Girl

  • Hadda Brooks

    Hadda Brooks

    Lounge Piano Player

  • Ron Boussom

    Ron Boussom

    Maitre D'

  • Ernie Lively

    Ernie Lively

    30's Cop

  • Toni Sawyer

    Toni Sawyer

    Grierson's Wife

  • Brooks Almy

    Brooks Almy

    Bridget's Mom

  • Darryl Henriques

    Darryl Henriques

    Cab Driver

  • Suzanne Harrer

    Suzanne Harrer

    Dance Contest Partner

  • Lee Weaver

    Lee Weaver

    30's Limo Driver

  • Geoffrey Rivas

    Geoffrey Rivas

    Security Guard

  • Travis Tedford

    Travis Tedford

    Newspaper Boy

  • Jeff Blumenkrantz

    Jeff Blumenkrantz

    Choreographer

  • Andrew Alden

    Andrew Alden

    Doorman

  • Johnny Crawford

    Johnny Crawford

    Singer

Crew (92)

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'; ?>
The Thirteenth Floor

Cast (33)

  • Craig Bierko

    Craig Bierko

    Douglas Hall

  • Armin Mueller-Stahl

    Armin Mueller-Stahl

    Hannon Fuller

  • Gretchen Mol

    Gretchen Mol

    Jane Fuller

  • Vincent D'Onofrio

    Vincent D'Onofrio

    Whitney

  • Dennis Haysbert

    Dennis Haysbert

    Det. Larry McBain

  • Steven Schub

    Steven Schub

    Det. Zev Bernstein

  • Jeremy Roberts

    Jeremy Roberts

    Tom Jones

  • Rif Hutton

    Rif Hutton

    Joe

  • Leon Rippy

    Leon Rippy

    Jane's Lawyer

  • Janet MacLachlan

    Janet MacLachlan

    Ellen

  • Brad William Henke

    Brad William Henke

    Cop

  • Burt Bulos

    Burt Bulos

    Bellhop

  • Venessia Valentino

    Venessia Valentino

    Concierge

  • Howard S. Miller

    Howard S. Miller

    Chauffeur

  • Tia Texada

    Tia Texada

    Natasha's Roommate

  • Shiri Appleby

    Shiri Appleby

    Bridget Manilla

  • Bob Clendenin

    Bob Clendenin

    Bank Manager

  • Rachel Winfree

    Rachel Winfree

    Woman Bank Customer

  • Meghan Ivey

    Meghan Ivey

    Chanteuse

  • Alison Lohman

    Alison Lohman

    Honey Bear Girl

  • Hadda Brooks

    Hadda Brooks

    Lounge Piano Player

  • Ron Boussom

    Ron Boussom

    Maitre D'

  • Ernie Lively

    Ernie Lively

    30's Cop

  • Toni Sawyer

    Toni Sawyer

    Grierson's Wife

  • Brooks Almy

    Brooks Almy

    Bridget's Mom

  • Darryl Henriques

    Darryl Henriques

    Cab Driver

  • Suzanne Harrer

    Suzanne Harrer

    Dance Contest Partner

  • Lee Weaver

    Lee Weaver

    30's Limo Driver

  • Geoffrey Rivas

    Geoffrey Rivas

    Security Guard

  • Travis Tedford

    Travis Tedford

    Newspaper Boy

  • Jeff Blumenkrantz

    Jeff Blumenkrantz

    Choreographer

  • Andrew Alden

    Andrew Alden

    Doorman

  • Johnny Crawford

    Johnny Crawford

    Singer

Crew (92)

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'; ?>
The Thirteenth Floor

Cast (33)

  • Craig Bierko

    Craig Bierko

    Douglas Hall

  • Armin Mueller-Stahl

    Armin Mueller-Stahl

    Hannon Fuller

  • Gretchen Mol

    Gretchen Mol

    Jane Fuller

  • Vincent D'Onofrio

    Vincent D'Onofrio

    Whitney

  • Dennis Haysbert

    Dennis Haysbert

    Det. Larry McBain

  • Steven Schub

    Steven Schub

    Det. Zev Bernstein

  • Jeremy Roberts

    Jeremy Roberts

    Tom Jones

  • Rif Hutton

    Rif Hutton

    Joe

  • Leon Rippy

    Leon Rippy

    Jane's Lawyer

  • Janet MacLachlan

    Janet MacLachlan

    Ellen

  • Brad William Henke

    Brad William Henke

    Cop

  • Burt Bulos

    Burt Bulos

    Bellhop

  • Venessia Valentino

    Venessia Valentino

    Concierge

  • Howard S. Miller

    Howard S. Miller

    Chauffeur

  • Tia Texada

    Tia Texada

    Natasha's Roommate

  • Shiri Appleby

    Shiri Appleby

    Bridget Manilla

  • Bob Clendenin

    Bob Clendenin

    Bank Manager

  • Rachel Winfree

    Rachel Winfree

    Woman Bank Customer

  • Meghan Ivey

    Meghan Ivey

    Chanteuse

  • Alison Lohman

    Alison Lohman

    Honey Bear Girl

  • Hadda Brooks

    Hadda Brooks

    Lounge Piano Player

  • Ron Boussom

    Ron Boussom

    Maitre D'

  • Ernie Lively

    Ernie Lively

    30's Cop

  • Toni Sawyer

    Toni Sawyer

    Grierson's Wife

  • Brooks Almy

    Brooks Almy

    Bridget's Mom

  • Darryl Henriques

    Darryl Henriques

    Cab Driver

  • Suzanne Harrer

    Suzanne Harrer

    Dance Contest Partner

  • Lee Weaver

    Lee Weaver

    30's Limo Driver

  • Geoffrey Rivas

    Geoffrey Rivas

    Security Guard

  • Travis Tedford

    Travis Tedford

    Newspaper Boy

  • Jeff Blumenkrantz

    Jeff Blumenkrantz

    Choreographer

  • Andrew Alden

    Andrew Alden

    Doorman

  • Johnny Crawford

    Johnny Crawford

    Singer

Crew (92)

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'; ?>
The Thirteenth Floor

Cast (33)

  • Craig Bierko

    Craig Bierko

    Douglas Hall

  • Armin Mueller-Stahl

    Armin Mueller-Stahl

    Hannon Fuller

  • Gretchen Mol

    Gretchen Mol

    Jane Fuller

  • Vincent D'Onofrio

    Vincent D'Onofrio

    Whitney

  • Dennis Haysbert

    Dennis Haysbert

    Det. Larry McBain

  • Steven Schub

    Steven Schub

    Det. Zev Bernstein

  • Jeremy Roberts

    Jeremy Roberts

    Tom Jones

  • Rif Hutton

    Rif Hutton

    Joe

  • Leon Rippy

    Leon Rippy

    Jane's Lawyer

  • Janet MacLachlan

    Janet MacLachlan

    Ellen

  • Brad William Henke

    Brad William Henke

    Cop

  • Burt Bulos

    Burt Bulos

    Bellhop

  • Venessia Valentino

    Venessia Valentino

    Concierge

  • Howard S. Miller

    Howard S. Miller

    Chauffeur

  • Tia Texada

    Tia Texada

    Natasha's Roommate

  • Shiri Appleby

    Shiri Appleby

    Bridget Manilla

  • Bob Clendenin

    Bob Clendenin

    Bank Manager

  • Rachel Winfree

    Rachel Winfree

    Woman Bank Customer

  • Meghan Ivey

    Meghan Ivey

    Chanteuse

  • Alison Lohman

    Alison Lohman

    Honey Bear Girl

  • Hadda Brooks

    Hadda Brooks

    Lounge Piano Player

  • Ron Boussom

    Ron Boussom

    Maitre D'

  • Ernie Lively

    Ernie Lively

    30's Cop

  • Toni Sawyer

    Toni Sawyer

    Grierson's Wife

  • Brooks Almy

    Brooks Almy

    Bridget's Mom

  • Darryl Henriques

    Darryl Henriques

    Cab Driver

  • Suzanne Harrer

    Suzanne Harrer

    Dance Contest Partner

  • Lee Weaver

    Lee Weaver

    30's Limo Driver

  • Geoffrey Rivas

    Geoffrey Rivas

    Security Guard

  • Travis Tedford

    Travis Tedford

    Newspaper Boy

  • Jeff Blumenkrantz

    Jeff Blumenkrantz

    Choreographer

  • Andrew Alden

    Andrew Alden

    Doorman

  • Johnny Crawford

    Johnny Crawford

    Singer

Crew (92)

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'; ?>
The Thirteenth Floor

Cast (33)

  • Craig Bierko

    Craig Bierko

    Douglas Hall

  • Armin Mueller-Stahl

    Armin Mueller-Stahl

    Hannon Fuller

  • Gretchen Mol

    Gretchen Mol

    Jane Fuller

  • Vincent D'Onofrio

    Vincent D'Onofrio

    Whitney

  • Dennis Haysbert

    Dennis Haysbert

    Det. Larry McBain

  • Steven Schub

    Steven Schub

    Det. Zev Bernstein

  • Jeremy Roberts

    Jeremy Roberts

    Tom Jones

  • Rif Hutton

    Rif Hutton

    Joe

  • Leon Rippy

    Leon Rippy

    Jane's Lawyer

  • Janet MacLachlan

    Janet MacLachlan

    Ellen

  • Brad William Henke

    Brad William Henke

    Cop

  • Burt Bulos

    Burt Bulos

    Bellhop

  • Venessia Valentino

    Venessia Valentino

    Concierge

  • Howard S. Miller

    Howard S. Miller

    Chauffeur

  • Tia Texada

    Tia Texada

    Natasha's Roommate

  • Shiri Appleby

    Shiri Appleby

    Bridget Manilla

  • Bob Clendenin

    Bob Clendenin

    Bank Manager

  • Rachel Winfree

    Rachel Winfree

    Woman Bank Customer

  • Meghan Ivey

    Meghan Ivey

    Chanteuse

  • Alison Lohman

    Alison Lohman

    Honey Bear Girl

  • Hadda Brooks

    Hadda Brooks

    Lounge Piano Player

  • Ron Boussom

    Ron Boussom

    Maitre D'

  • Ernie Lively

    Ernie Lively

    30's Cop

  • Toni Sawyer

    Toni Sawyer

    Grierson's Wife

  • Brooks Almy

    Brooks Almy

    Bridget's Mom

  • Darryl Henriques

    Darryl Henriques

    Cab Driver

  • Suzanne Harrer

    Suzanne Harrer

    Dance Contest Partner

  • Lee Weaver

    Lee Weaver

    30's Limo Driver

  • Geoffrey Rivas

    Geoffrey Rivas

    Security Guard

  • Travis Tedford

    Travis Tedford

    Newspaper Boy

  • Jeff Blumenkrantz

    Jeff Blumenkrantz

    Choreographer

  • Andrew Alden

    Andrew Alden

    Doorman

  • Johnny Crawford

    Johnny Crawford

    Singer

Crew (92)

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'; ?>
The Thirteenth Floor

Cast (33)

  • Craig Bierko

    Craig Bierko

    Douglas Hall

  • Armin Mueller-Stahl

    Armin Mueller-Stahl

    Hannon Fuller

  • Gretchen Mol

    Gretchen Mol

    Jane Fuller

  • Vincent D'Onofrio

    Vincent D'Onofrio

    Whitney

  • Dennis Haysbert

    Dennis Haysbert

    Det. Larry McBain

  • Steven Schub

    Steven Schub

    Det. Zev Bernstein

  • Jeremy Roberts

    Jeremy Roberts

    Tom Jones

  • Rif Hutton

    Rif Hutton

    Joe

  • Leon Rippy

    Leon Rippy

    Jane's Lawyer

  • Janet MacLachlan

    Janet MacLachlan

    Ellen

  • Brad William Henke

    Brad William Henke

    Cop

  • Burt Bulos

    Burt Bulos

    Bellhop

  • Venessia Valentino

    Venessia Valentino

    Concierge

  • Howard S. Miller

    Howard S. Miller

    Chauffeur

  • Tia Texada

    Tia Texada

    Natasha's Roommate

  • Shiri Appleby

    Shiri Appleby

    Bridget Manilla

  • Bob Clendenin

    Bob Clendenin

    Bank Manager

  • Rachel Winfree

    Rachel Winfree

    Woman Bank Customer

  • Meghan Ivey

    Meghan Ivey

    Chanteuse

  • Alison Lohman

    Alison Lohman

    Honey Bear Girl

  • Hadda Brooks

    Hadda Brooks

    Lounge Piano Player

  • Ron Boussom

    Ron Boussom

    Maitre D'

  • Ernie Lively

    Ernie Lively

    30's Cop

  • Toni Sawyer

    Toni Sawyer

    Grierson's Wife

  • Brooks Almy

    Brooks Almy

    Bridget's Mom

  • Darryl Henriques

    Darryl Henriques

    Cab Driver

  • Suzanne Harrer

    Suzanne Harrer

    Dance Contest Partner

  • Lee Weaver

    Lee Weaver

    30's Limo Driver

  • Geoffrey Rivas

    Geoffrey Rivas

    Security Guard

  • Travis Tedford

    Travis Tedford

    Newspaper Boy

  • Jeff Blumenkrantz

    Jeff Blumenkrantz

    Choreographer

  • Andrew Alden

    Andrew Alden

    Doorman

  • Johnny Crawford

    Johnny Crawford

    Singer

Crew (92)