They Met in Bombay

Cast (33)

  • Clark Gable

    Clark Gable

    Gerald Meldrick

  • Rosalind Russell

    Rosalind Russell

    Anya Von Duren

  • Peter Lorre

    Peter Lorre

    Captain Chang

  • Reginald Owen

    Reginald Owen

    General Allen

  • Jessie Ralph

    Jessie Ralph

    Duchess of Beltravers

  • Matthew Boulton

    Matthew Boulton

    Inspector Cressney

  • Eduardo Ciannelli

    Eduardo Ciannelli

    Giovanni Riccio, the Hotel Manager

  • Luis Alberni

    Luis Alberni

    Maitre d'hotel

  • Rosina Galli

    Rosina Galli

    Carmencita

  • Jay Novello

    Jay Novello

    Bolo

  • Victor Sen Yung

    Victor Sen Yung

    Gin Ling (uncredited)

  • William Edmunds

    William Edmunds

    Hotel Barber (uncredited)

  • Charles Trowbridge

    Charles Trowbridge

    Doctor (uncredited)

  • William A. Boardway

    William A. Boardway

    Officer (uncredited)

  • Stephen Chase

    Stephen Chase

    Officer (uncredited)

  • Tris Coffin

    Tris Coffin

    Captain in Car (uncredited)

  • Tommy Conlon

    Tommy Conlon

    Young Lieutenant (uncredited)

  • Harry Cording

    Harry Cording

    Corporal at Base (uncredited)

  • James Craven

    James Craven

    Captain in Car (uncredited)

  • Victor De Linsky

    Victor De Linsky

    Restaurant Patron (uncredited)

  • Leyland Hodgson

    Leyland Hodgson

    Car Driver (uncredited)

  • Cyril McLaglen

    Cyril McLaglen

    Sergeant Major (uncredited)

  • Pat O'Hara

    Pat O'Hara

    Private (uncredited)

  • Fred Rapport

    Fred Rapport

    Restaurant Patron (uncredited)

  • Cosmo Sardo

    Cosmo Sardo

    Barber (uncredited)

  • Robert R. Stephenson

    Robert R. Stephenson

    Sentry (uncredited)

  • Harry Worth

    Harry Worth

    Hotel Desk Clerk (uncredited)

  • Teru Shimada

    Teru Shimada

    Japanese Colonel (uncredited)

  • Miles Mander

    Miles Mander

    Doctor (uncredited)

  • James T. Mack

    James T. Mack

    Missionary (uncredited)

  • Cornelius Keefe

    Cornelius Keefe

    Officer (uncredited)

  • Philip Ahn

    Philip Ahn

    Japanese officer (uncredited)

  • Harry Allen

    Harry Allen

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'; ?>
They Met in Bombay

Cast (33)

  • Clark Gable

    Clark Gable

    Gerald Meldrick

  • Rosalind Russell

    Rosalind Russell

    Anya Von Duren

  • Peter Lorre

    Peter Lorre

    Captain Chang

  • Reginald Owen

    Reginald Owen

    General Allen

  • Jessie Ralph

    Jessie Ralph

    Duchess of Beltravers

  • Matthew Boulton

    Matthew Boulton

    Inspector Cressney

  • Eduardo Ciannelli

    Eduardo Ciannelli

    Giovanni Riccio, the Hotel Manager

  • Luis Alberni

    Luis Alberni

    Maitre d'hotel

  • Rosina Galli

    Rosina Galli

    Carmencita

  • Jay Novello

    Jay Novello

    Bolo

  • Victor Sen Yung

    Victor Sen Yung

    Gin Ling (uncredited)

  • William Edmunds

    William Edmunds

    Hotel Barber (uncredited)

  • Charles Trowbridge

    Charles Trowbridge

    Doctor (uncredited)

  • William A. Boardway

    William A. Boardway

    Officer (uncredited)

  • Stephen Chase

    Stephen Chase

    Officer (uncredited)

  • Tris Coffin

    Tris Coffin

    Captain in Car (uncredited)

  • Tommy Conlon

    Tommy Conlon

    Young Lieutenant (uncredited)

  • Harry Cording

    Harry Cording

    Corporal at Base (uncredited)

  • James Craven

    James Craven

    Captain in Car (uncredited)

  • Victor De Linsky

    Victor De Linsky

    Restaurant Patron (uncredited)

  • Leyland Hodgson

    Leyland Hodgson

    Car Driver (uncredited)

  • Cyril McLaglen

    Cyril McLaglen

    Sergeant Major (uncredited)

  • Pat O'Hara

    Pat O'Hara

    Private (uncredited)

  • Fred Rapport

    Fred Rapport

    Restaurant Patron (uncredited)

  • Cosmo Sardo

    Cosmo Sardo

    Barber (uncredited)

  • Robert R. Stephenson

    Robert R. Stephenson

    Sentry (uncredited)

  • Harry Worth

    Harry Worth

    Hotel Desk Clerk (uncredited)

  • Teru Shimada

    Teru Shimada

    Japanese Colonel (uncredited)

  • Miles Mander

    Miles Mander

    Doctor (uncredited)

  • James T. Mack

    James T. Mack

    Missionary (uncredited)

  • Cornelius Keefe

    Cornelius Keefe

    Officer (uncredited)

  • Philip Ahn

    Philip Ahn

    Japanese officer (uncredited)

  • Harry Allen

    Harry Allen

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'; ?>
They Met in Bombay

Cast (33)

  • Clark Gable

    Clark Gable

    Gerald Meldrick

  • Rosalind Russell

    Rosalind Russell

    Anya Von Duren

  • Peter Lorre

    Peter Lorre

    Captain Chang

  • Reginald Owen

    Reginald Owen

    General Allen

  • Jessie Ralph

    Jessie Ralph

    Duchess of Beltravers

  • Matthew Boulton

    Matthew Boulton

    Inspector Cressney

  • Eduardo Ciannelli

    Eduardo Ciannelli

    Giovanni Riccio, the Hotel Manager

  • Luis Alberni

    Luis Alberni

    Maitre d'hotel

  • Rosina Galli

    Rosina Galli

    Carmencita

  • Jay Novello

    Jay Novello

    Bolo

  • Victor Sen Yung

    Victor Sen Yung

    Gin Ling (uncredited)

  • William Edmunds

    William Edmunds

    Hotel Barber (uncredited)

  • Charles Trowbridge

    Charles Trowbridge

    Doctor (uncredited)

  • William A. Boardway

    William A. Boardway

    Officer (uncredited)

  • Stephen Chase

    Stephen Chase

    Officer (uncredited)

  • Tris Coffin

    Tris Coffin

    Captain in Car (uncredited)

  • Tommy Conlon

    Tommy Conlon

    Young Lieutenant (uncredited)

  • Harry Cording

    Harry Cording

    Corporal at Base (uncredited)

  • James Craven

    James Craven

    Captain in Car (uncredited)

  • Victor De Linsky

    Victor De Linsky

    Restaurant Patron (uncredited)

  • Leyland Hodgson

    Leyland Hodgson

    Car Driver (uncredited)

  • Cyril McLaglen

    Cyril McLaglen

    Sergeant Major (uncredited)

  • Pat O'Hara

    Pat O'Hara

    Private (uncredited)

  • Fred Rapport

    Fred Rapport

    Restaurant Patron (uncredited)

  • Cosmo Sardo

    Cosmo Sardo

    Barber (uncredited)

  • Robert R. Stephenson

    Robert R. Stephenson

    Sentry (uncredited)

  • Harry Worth

    Harry Worth

    Hotel Desk Clerk (uncredited)

  • Teru Shimada

    Teru Shimada

    Japanese Colonel (uncredited)

  • Miles Mander

    Miles Mander

    Doctor (uncredited)

  • James T. Mack

    James T. Mack

    Missionary (uncredited)

  • Cornelius Keefe

    Cornelius Keefe

    Officer (uncredited)

  • Philip Ahn

    Philip Ahn

    Japanese officer (uncredited)

  • Harry Allen

    Harry Allen

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'; ?>
They Met in Bombay

Cast (33)

  • Clark Gable

    Clark Gable

    Gerald Meldrick

  • Rosalind Russell

    Rosalind Russell

    Anya Von Duren

  • Peter Lorre

    Peter Lorre

    Captain Chang

  • Reginald Owen

    Reginald Owen

    General Allen

  • Jessie Ralph

    Jessie Ralph

    Duchess of Beltravers

  • Matthew Boulton

    Matthew Boulton

    Inspector Cressney

  • Eduardo Ciannelli

    Eduardo Ciannelli

    Giovanni Riccio, the Hotel Manager

  • Luis Alberni

    Luis Alberni

    Maitre d'hotel

  • Rosina Galli

    Rosina Galli

    Carmencita

  • Jay Novello

    Jay Novello

    Bolo

  • Victor Sen Yung

    Victor Sen Yung

    Gin Ling (uncredited)

  • William Edmunds

    William Edmunds

    Hotel Barber (uncredited)

  • Charles Trowbridge

    Charles Trowbridge

    Doctor (uncredited)

  • William A. Boardway

    William A. Boardway

    Officer (uncredited)

  • Stephen Chase

    Stephen Chase

    Officer (uncredited)

  • Tris Coffin

    Tris Coffin

    Captain in Car (uncredited)

  • Tommy Conlon

    Tommy Conlon

    Young Lieutenant (uncredited)

  • Harry Cording

    Harry Cording

    Corporal at Base (uncredited)

  • James Craven

    James Craven

    Captain in Car (uncredited)

  • Victor De Linsky

    Victor De Linsky

    Restaurant Patron (uncredited)

  • Leyland Hodgson

    Leyland Hodgson

    Car Driver (uncredited)

  • Cyril McLaglen

    Cyril McLaglen

    Sergeant Major (uncredited)

  • Pat O'Hara

    Pat O'Hara

    Private (uncredited)

  • Fred Rapport

    Fred Rapport

    Restaurant Patron (uncredited)

  • Cosmo Sardo

    Cosmo Sardo

    Barber (uncredited)

  • Robert R. Stephenson

    Robert R. Stephenson

    Sentry (uncredited)

  • Harry Worth

    Harry Worth

    Hotel Desk Clerk (uncredited)

  • Teru Shimada

    Teru Shimada

    Japanese Colonel (uncredited)

  • Miles Mander

    Miles Mander

    Doctor (uncredited)

  • James T. Mack

    James T. Mack

    Missionary (uncredited)

  • Cornelius Keefe

    Cornelius Keefe

    Officer (uncredited)

  • Philip Ahn

    Philip Ahn

    Japanese officer (uncredited)

  • Harry Allen

    Harry Allen

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'; ?>
They Met in Bombay

Cast (33)

  • Clark Gable

    Clark Gable

    Gerald Meldrick

  • Rosalind Russell

    Rosalind Russell

    Anya Von Duren

  • Peter Lorre

    Peter Lorre

    Captain Chang

  • Reginald Owen

    Reginald Owen

    General Allen

  • Jessie Ralph

    Jessie Ralph

    Duchess of Beltravers

  • Matthew Boulton

    Matthew Boulton

    Inspector Cressney

  • Eduardo Ciannelli

    Eduardo Ciannelli

    Giovanni Riccio, the Hotel Manager

  • Luis Alberni

    Luis Alberni

    Maitre d'hotel

  • Rosina Galli

    Rosina Galli

    Carmencita

  • Jay Novello

    Jay Novello

    Bolo

  • Victor Sen Yung

    Victor Sen Yung

    Gin Ling (uncredited)

  • William Edmunds

    William Edmunds

    Hotel Barber (uncredited)

  • Charles Trowbridge

    Charles Trowbridge

    Doctor (uncredited)

  • William A. Boardway

    William A. Boardway

    Officer (uncredited)

  • Stephen Chase

    Stephen Chase

    Officer (uncredited)

  • Tris Coffin

    Tris Coffin

    Captain in Car (uncredited)

  • Tommy Conlon

    Tommy Conlon

    Young Lieutenant (uncredited)

  • Harry Cording

    Harry Cording

    Corporal at Base (uncredited)

  • James Craven

    James Craven

    Captain in Car (uncredited)

  • Victor De Linsky

    Victor De Linsky

    Restaurant Patron (uncredited)

  • Leyland Hodgson

    Leyland Hodgson

    Car Driver (uncredited)

  • Cyril McLaglen

    Cyril McLaglen

    Sergeant Major (uncredited)

  • Pat O'Hara

    Pat O'Hara

    Private (uncredited)

  • Fred Rapport

    Fred Rapport

    Restaurant Patron (uncredited)

  • Cosmo Sardo

    Cosmo Sardo

    Barber (uncredited)

  • Robert R. Stephenson

    Robert R. Stephenson

    Sentry (uncredited)

  • Harry Worth

    Harry Worth

    Hotel Desk Clerk (uncredited)

  • Teru Shimada

    Teru Shimada

    Japanese Colonel (uncredited)

  • Miles Mander

    Miles Mander

    Doctor (uncredited)

  • James T. Mack

    James T. Mack

    Missionary (uncredited)

  • Cornelius Keefe

    Cornelius Keefe

    Officer (uncredited)

  • Philip Ahn

    Philip Ahn

    Japanese officer (uncredited)

  • Harry Allen

    Harry Allen

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'; ?>
They Met in Bombay

Cast (33)

  • Clark Gable

    Clark Gable

    Gerald Meldrick

  • Rosalind Russell

    Rosalind Russell

    Anya Von Duren

  • Peter Lorre

    Peter Lorre

    Captain Chang

  • Reginald Owen

    Reginald Owen

    General Allen

  • Jessie Ralph

    Jessie Ralph

    Duchess of Beltravers

  • Matthew Boulton

    Matthew Boulton

    Inspector Cressney

  • Eduardo Ciannelli

    Eduardo Ciannelli

    Giovanni Riccio, the Hotel Manager

  • Luis Alberni

    Luis Alberni

    Maitre d'hotel

  • Rosina Galli

    Rosina Galli

    Carmencita

  • Jay Novello

    Jay Novello

    Bolo

  • Victor Sen Yung

    Victor Sen Yung

    Gin Ling (uncredited)

  • William Edmunds

    William Edmunds

    Hotel Barber (uncredited)

  • Charles Trowbridge

    Charles Trowbridge

    Doctor (uncredited)

  • William A. Boardway

    William A. Boardway

    Officer (uncredited)

  • Stephen Chase

    Stephen Chase

    Officer (uncredited)

  • Tris Coffin

    Tris Coffin

    Captain in Car (uncredited)

  • Tommy Conlon

    Tommy Conlon

    Young Lieutenant (uncredited)

  • Harry Cording

    Harry Cording

    Corporal at Base (uncredited)

  • James Craven

    James Craven

    Captain in Car (uncredited)

  • Victor De Linsky

    Victor De Linsky

    Restaurant Patron (uncredited)

  • Leyland Hodgson

    Leyland Hodgson

    Car Driver (uncredited)

  • Cyril McLaglen

    Cyril McLaglen

    Sergeant Major (uncredited)

  • Pat O'Hara

    Pat O'Hara

    Private (uncredited)

  • Fred Rapport

    Fred Rapport

    Restaurant Patron (uncredited)

  • Cosmo Sardo

    Cosmo Sardo

    Barber (uncredited)

  • Robert R. Stephenson

    Robert R. Stephenson

    Sentry (uncredited)

  • Harry Worth

    Harry Worth

    Hotel Desk Clerk (uncredited)

  • Teru Shimada

    Teru Shimada

    Japanese Colonel (uncredited)

  • Miles Mander

    Miles Mander

    Doctor (uncredited)

  • James T. Mack

    James T. Mack

    Missionary (uncredited)

  • Cornelius Keefe

    Cornelius Keefe

    Officer (uncredited)

  • Philip Ahn

    Philip Ahn

    Japanese officer (uncredited)

  • Harry Allen

    Harry Allen

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'; ?>
They Met in Bombay

Cast (33)

  • Clark Gable

    Clark Gable

    Gerald Meldrick

  • Rosalind Russell

    Rosalind Russell

    Anya Von Duren

  • Peter Lorre

    Peter Lorre

    Captain Chang

  • Reginald Owen

    Reginald Owen

    General Allen

  • Jessie Ralph

    Jessie Ralph

    Duchess of Beltravers

  • Matthew Boulton

    Matthew Boulton

    Inspector Cressney

  • Eduardo Ciannelli

    Eduardo Ciannelli

    Giovanni Riccio, the Hotel Manager

  • Luis Alberni

    Luis Alberni

    Maitre d'hotel

  • Rosina Galli

    Rosina Galli

    Carmencita

  • Jay Novello

    Jay Novello

    Bolo

  • Victor Sen Yung

    Victor Sen Yung

    Gin Ling (uncredited)

  • William Edmunds

    William Edmunds

    Hotel Barber (uncredited)

  • Charles Trowbridge

    Charles Trowbridge

    Doctor (uncredited)

  • William A. Boardway

    William A. Boardway

    Officer (uncredited)

  • Stephen Chase

    Stephen Chase

    Officer (uncredited)

  • Tris Coffin

    Tris Coffin

    Captain in Car (uncredited)

  • Tommy Conlon

    Tommy Conlon

    Young Lieutenant (uncredited)

  • Harry Cording

    Harry Cording

    Corporal at Base (uncredited)

  • James Craven

    James Craven

    Captain in Car (uncredited)

  • Victor De Linsky

    Victor De Linsky

    Restaurant Patron (uncredited)

  • Leyland Hodgson

    Leyland Hodgson

    Car Driver (uncredited)

  • Cyril McLaglen

    Cyril McLaglen

    Sergeant Major (uncredited)

  • Pat O'Hara

    Pat O'Hara

    Private (uncredited)

  • Fred Rapport

    Fred Rapport

    Restaurant Patron (uncredited)

  • Cosmo Sardo

    Cosmo Sardo

    Barber (uncredited)

  • Robert R. Stephenson

    Robert R. Stephenson

    Sentry (uncredited)

  • Harry Worth

    Harry Worth

    Hotel Desk Clerk (uncredited)

  • Teru Shimada

    Teru Shimada

    Japanese Colonel (uncredited)

  • Miles Mander

    Miles Mander

    Doctor (uncredited)

  • James T. Mack

    James T. Mack

    Missionary (uncredited)

  • Cornelius Keefe

    Cornelius Keefe

    Officer (uncredited)

  • Philip Ahn

    Philip Ahn

    Japanese officer (uncredited)

  • Harry Allen

    Harry Allen