Stand-In

Cast (20)

  • Leslie Howard

    Leslie Howard

    Atterbury Dodd

  • Joan Blondell

    Joan Blondell

    Lester Plum

  • Humphrey Bogart

    Humphrey Bogart

    Doug Quintain

  • Alan Mowbray

    Alan Mowbray

    Koslofski

  • Marla Shelton

    Marla Shelton

    Thelma Cheri

  • C. Henry Gordon

    C. Henry Gordon

    Ivor Nassau

  • Jack Carson

    Jack Carson

    Tom Potts

  • William V. Mong

    William V. Mong

    Cyrus Pettypacker

  • Esther Howard

    Esther Howard

    Mrs, Mack

  • Charles Middleton

    Charles Middleton

    Actor Dressed as Abraham Lincoln

  • Emerson Treacy

    Emerson Treacy

    Tommy

  • Tully Marshall

    Tully Marshall

    Fowler Pettypacker

  • J. C. Nugent

    J. C. Nugent

    Junior Pettypacker

  • Charles Williams

    Charles Williams

    Mr. Mack

  • Olin Howland

    Olin Howland

    Hotel Manager

  • Anne O'Neal

    Anne O'Neal

    Mother of Singing Child Actress

  • Mary MacLaren

    Mary MacLaren

    Naomi

  • Theodore von Eltz

    Theodore von Eltz

    Studio Actor in "Sex and Satan" Movie

  • John George

    John George

    Man at Studio Gate (uncredited)

  • Poppy Wilde

    Poppy Wilde

    Starlet

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'; ?>
Stand-In

Cast (20)

  • Leslie Howard

    Leslie Howard

    Atterbury Dodd

  • Joan Blondell

    Joan Blondell

    Lester Plum

  • Humphrey Bogart

    Humphrey Bogart

    Doug Quintain

  • Alan Mowbray

    Alan Mowbray

    Koslofski

  • Marla Shelton

    Marla Shelton

    Thelma Cheri

  • C. Henry Gordon

    C. Henry Gordon

    Ivor Nassau

  • Jack Carson

    Jack Carson

    Tom Potts

  • William V. Mong

    William V. Mong

    Cyrus Pettypacker

  • Esther Howard

    Esther Howard

    Mrs, Mack

  • Charles Middleton

    Charles Middleton

    Actor Dressed as Abraham Lincoln

  • Emerson Treacy

    Emerson Treacy

    Tommy

  • Tully Marshall

    Tully Marshall

    Fowler Pettypacker

  • J. C. Nugent

    J. C. Nugent

    Junior Pettypacker

  • Charles Williams

    Charles Williams

    Mr. Mack

  • Olin Howland

    Olin Howland

    Hotel Manager

  • Anne O'Neal

    Anne O'Neal

    Mother of Singing Child Actress

  • Mary MacLaren

    Mary MacLaren

    Naomi

  • Theodore von Eltz

    Theodore von Eltz

    Studio Actor in "Sex and Satan" Movie

  • John George

    John George

    Man at Studio Gate (uncredited)

  • Poppy Wilde

    Poppy Wilde

    Starlet

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'; ?>
Stand-In

Cast (20)

  • Leslie Howard

    Leslie Howard

    Atterbury Dodd

  • Joan Blondell

    Joan Blondell

    Lester Plum

  • Humphrey Bogart

    Humphrey Bogart

    Doug Quintain

  • Alan Mowbray

    Alan Mowbray

    Koslofski

  • Marla Shelton

    Marla Shelton

    Thelma Cheri

  • C. Henry Gordon

    C. Henry Gordon

    Ivor Nassau

  • Jack Carson

    Jack Carson

    Tom Potts

  • William V. Mong

    William V. Mong

    Cyrus Pettypacker

  • Esther Howard

    Esther Howard

    Mrs, Mack

  • Charles Middleton

    Charles Middleton

    Actor Dressed as Abraham Lincoln

  • Emerson Treacy

    Emerson Treacy

    Tommy

  • Tully Marshall

    Tully Marshall

    Fowler Pettypacker

  • J. C. Nugent

    J. C. Nugent

    Junior Pettypacker

  • Charles Williams

    Charles Williams

    Mr. Mack

  • Olin Howland

    Olin Howland

    Hotel Manager

  • Anne O'Neal

    Anne O'Neal

    Mother of Singing Child Actress

  • Mary MacLaren

    Mary MacLaren

    Naomi

  • Theodore von Eltz

    Theodore von Eltz

    Studio Actor in "Sex and Satan" Movie

  • John George

    John George

    Man at Studio Gate (uncredited)

  • Poppy Wilde

    Poppy Wilde

    Starlet

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'; ?>
Stand-In

Cast (20)

  • Leslie Howard

    Leslie Howard

    Atterbury Dodd

  • Joan Blondell

    Joan Blondell

    Lester Plum

  • Humphrey Bogart

    Humphrey Bogart

    Doug Quintain

  • Alan Mowbray

    Alan Mowbray

    Koslofski

  • Marla Shelton

    Marla Shelton

    Thelma Cheri

  • C. Henry Gordon

    C. Henry Gordon

    Ivor Nassau

  • Jack Carson

    Jack Carson

    Tom Potts

  • William V. Mong

    William V. Mong

    Cyrus Pettypacker

  • Esther Howard

    Esther Howard

    Mrs, Mack

  • Charles Middleton

    Charles Middleton

    Actor Dressed as Abraham Lincoln

  • Emerson Treacy

    Emerson Treacy

    Tommy

  • Tully Marshall

    Tully Marshall

    Fowler Pettypacker

  • J. C. Nugent

    J. C. Nugent

    Junior Pettypacker

  • Charles Williams

    Charles Williams

    Mr. Mack

  • Olin Howland

    Olin Howland

    Hotel Manager

  • Anne O'Neal

    Anne O'Neal

    Mother of Singing Child Actress

  • Mary MacLaren

    Mary MacLaren

    Naomi

  • Theodore von Eltz

    Theodore von Eltz

    Studio Actor in "Sex and Satan" Movie

  • John George

    John George

    Man at Studio Gate (uncredited)

  • Poppy Wilde

    Poppy Wilde

    Starlet

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'; ?>
Stand-In

Cast (20)

  • Leslie Howard

    Leslie Howard

    Atterbury Dodd

  • Joan Blondell

    Joan Blondell

    Lester Plum

  • Humphrey Bogart

    Humphrey Bogart

    Doug Quintain

  • Alan Mowbray

    Alan Mowbray

    Koslofski

  • Marla Shelton

    Marla Shelton

    Thelma Cheri

  • C. Henry Gordon

    C. Henry Gordon

    Ivor Nassau

  • Jack Carson

    Jack Carson

    Tom Potts

  • William V. Mong

    William V. Mong

    Cyrus Pettypacker

  • Esther Howard

    Esther Howard

    Mrs, Mack

  • Charles Middleton

    Charles Middleton

    Actor Dressed as Abraham Lincoln

  • Emerson Treacy

    Emerson Treacy

    Tommy

  • Tully Marshall

    Tully Marshall

    Fowler Pettypacker

  • J. C. Nugent

    J. C. Nugent

    Junior Pettypacker

  • Charles Williams

    Charles Williams

    Mr. Mack

  • Olin Howland

    Olin Howland

    Hotel Manager

  • Anne O'Neal

    Anne O'Neal

    Mother of Singing Child Actress

  • Mary MacLaren

    Mary MacLaren

    Naomi

  • Theodore von Eltz

    Theodore von Eltz

    Studio Actor in "Sex and Satan" Movie

  • John George

    John George

    Man at Studio Gate (uncredited)

  • Poppy Wilde

    Poppy Wilde

    Starlet

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'; ?>
Stand-In

Cast (20)

  • Leslie Howard

    Leslie Howard

    Atterbury Dodd

  • Joan Blondell

    Joan Blondell

    Lester Plum

  • Humphrey Bogart

    Humphrey Bogart

    Doug Quintain

  • Alan Mowbray

    Alan Mowbray

    Koslofski

  • Marla Shelton

    Marla Shelton

    Thelma Cheri

  • C. Henry Gordon

    C. Henry Gordon

    Ivor Nassau

  • Jack Carson

    Jack Carson

    Tom Potts

  • William V. Mong

    William V. Mong

    Cyrus Pettypacker

  • Esther Howard

    Esther Howard

    Mrs, Mack

  • Charles Middleton

    Charles Middleton

    Actor Dressed as Abraham Lincoln

  • Emerson Treacy

    Emerson Treacy

    Tommy

  • Tully Marshall

    Tully Marshall

    Fowler Pettypacker

  • J. C. Nugent

    J. C. Nugent

    Junior Pettypacker

  • Charles Williams

    Charles Williams

    Mr. Mack

  • Olin Howland

    Olin Howland

    Hotel Manager

  • Anne O'Neal

    Anne O'Neal

    Mother of Singing Child Actress

  • Mary MacLaren

    Mary MacLaren

    Naomi

  • Theodore von Eltz

    Theodore von Eltz

    Studio Actor in "Sex and Satan" Movie

  • John George

    John George

    Man at Studio Gate (uncredited)

  • Poppy Wilde

    Poppy Wilde

    Starlet

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'; ?>
Stand-In

Cast (20)

  • Leslie Howard

    Leslie Howard

    Atterbury Dodd

  • Joan Blondell

    Joan Blondell

    Lester Plum

  • Humphrey Bogart

    Humphrey Bogart

    Doug Quintain

  • Alan Mowbray

    Alan Mowbray

    Koslofski

  • Marla Shelton

    Marla Shelton

    Thelma Cheri

  • C. Henry Gordon

    C. Henry Gordon

    Ivor Nassau

  • Jack Carson

    Jack Carson

    Tom Potts

  • William V. Mong

    William V. Mong

    Cyrus Pettypacker

  • Esther Howard

    Esther Howard

    Mrs, Mack

  • Charles Middleton

    Charles Middleton

    Actor Dressed as Abraham Lincoln

  • Emerson Treacy

    Emerson Treacy

    Tommy

  • Tully Marshall

    Tully Marshall

    Fowler Pettypacker

  • J. C. Nugent

    J. C. Nugent

    Junior Pettypacker

  • Charles Williams

    Charles Williams

    Mr. Mack

  • Olin Howland

    Olin Howland

    Hotel Manager

  • Anne O'Neal

    Anne O'Neal

    Mother of Singing Child Actress

  • Mary MacLaren

    Mary MacLaren

    Naomi

  • Theodore von Eltz

    Theodore von Eltz

    Studio Actor in "Sex and Satan" Movie

  • John George

    John George

    Man at Studio Gate (uncredited)

  • Poppy Wilde

    Poppy Wilde

    Starlet