Meet Mr. Callaghan

Cast (22)

  • Derrick De Marney

    Derrick De Marney

    Slim Callaghan

  • Harriette Johns

    Harriette Johns

    Cynthia Meraulton

  • Adrienne Corri

    Adrienne Corri

    Mayolo

  • Robert Adair

    Robert Adair

    August Meraulton

  • Delphi Lawrence

    Delphi Lawrence

    Effie Perkins

  • Michael Balfour

    Michael Balfour

    Coffee Stallkeeper

  • Larry Burns

    Larry Burns

    Darky

  • Michael Partridge

    Michael Partridge

    Jengel

  • Howard Douglas

    Howard Douglas

    Tweest

  • Trevor Reid

    Trevor Reid

    Inspector Gringall

  • Frank Sieman

    Frank Sieman

    Sergeant Fields

  • John Ainsworth

    John Ainsworth

    P.C. Masters

  • Brenda Gay

    Brenda Gay

    Secretary of William Meraulton

  • Peter Neil

    Peter Neil

    William Meraulton

  • John Miller

    John Miller

    Manservant

  • Roger Williams

    Roger Williams

    Bellamy Meraulton

  • Belinda Lee

    Belinda Lee

    Jenny Appleby

  • Robert Moore

    Robert Moore

    Nightclub Manager

  • Alex Gallier

    Alex Gallier

    Compere (as Alex De Gallier)

  • John Longden

    John Longden

    Jeremy Meraulton

  • Frank Henderson

    Frank Henderson

    Paul Meraulton

  • Doug Robinson

    Doug Robinson

    Man (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'; ?>
Meet Mr. Callaghan

Cast (22)

  • Derrick De Marney

    Derrick De Marney

    Slim Callaghan

  • Harriette Johns

    Harriette Johns

    Cynthia Meraulton

  • Adrienne Corri

    Adrienne Corri

    Mayolo

  • Robert Adair

    Robert Adair

    August Meraulton

  • Delphi Lawrence

    Delphi Lawrence

    Effie Perkins

  • Michael Balfour

    Michael Balfour

    Coffee Stallkeeper

  • Larry Burns

    Larry Burns

    Darky

  • Michael Partridge

    Michael Partridge

    Jengel

  • Howard Douglas

    Howard Douglas

    Tweest

  • Trevor Reid

    Trevor Reid

    Inspector Gringall

  • Frank Sieman

    Frank Sieman

    Sergeant Fields

  • John Ainsworth

    John Ainsworth

    P.C. Masters

  • Brenda Gay

    Brenda Gay

    Secretary of William Meraulton

  • Peter Neil

    Peter Neil

    William Meraulton

  • John Miller

    John Miller

    Manservant

  • Roger Williams

    Roger Williams

    Bellamy Meraulton

  • Belinda Lee

    Belinda Lee

    Jenny Appleby

  • Robert Moore

    Robert Moore

    Nightclub Manager

  • Alex Gallier

    Alex Gallier

    Compere (as Alex De Gallier)

  • John Longden

    John Longden

    Jeremy Meraulton

  • Frank Henderson

    Frank Henderson

    Paul Meraulton

  • Doug Robinson

    Doug Robinson

    Man (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'; ?>
Meet Mr. Callaghan

Cast (22)

  • Derrick De Marney

    Derrick De Marney

    Slim Callaghan

  • Harriette Johns

    Harriette Johns

    Cynthia Meraulton

  • Adrienne Corri

    Adrienne Corri

    Mayolo

  • Robert Adair

    Robert Adair

    August Meraulton

  • Delphi Lawrence

    Delphi Lawrence

    Effie Perkins

  • Michael Balfour

    Michael Balfour

    Coffee Stallkeeper

  • Larry Burns

    Larry Burns

    Darky

  • Michael Partridge

    Michael Partridge

    Jengel

  • Howard Douglas

    Howard Douglas

    Tweest

  • Trevor Reid

    Trevor Reid

    Inspector Gringall

  • Frank Sieman

    Frank Sieman

    Sergeant Fields

  • John Ainsworth

    John Ainsworth

    P.C. Masters

  • Brenda Gay

    Brenda Gay

    Secretary of William Meraulton

  • Peter Neil

    Peter Neil

    William Meraulton

  • John Miller

    John Miller

    Manservant

  • Roger Williams

    Roger Williams

    Bellamy Meraulton

  • Belinda Lee

    Belinda Lee

    Jenny Appleby

  • Robert Moore

    Robert Moore

    Nightclub Manager

  • Alex Gallier

    Alex Gallier

    Compere (as Alex De Gallier)

  • John Longden

    John Longden

    Jeremy Meraulton

  • Frank Henderson

    Frank Henderson

    Paul Meraulton

  • Doug Robinson

    Doug Robinson

    Man (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'; ?>
Meet Mr. Callaghan

Cast (22)

  • Derrick De Marney

    Derrick De Marney

    Slim Callaghan

  • Harriette Johns

    Harriette Johns

    Cynthia Meraulton

  • Adrienne Corri

    Adrienne Corri

    Mayolo

  • Robert Adair

    Robert Adair

    August Meraulton

  • Delphi Lawrence

    Delphi Lawrence

    Effie Perkins

  • Michael Balfour

    Michael Balfour

    Coffee Stallkeeper

  • Larry Burns

    Larry Burns

    Darky

  • Michael Partridge

    Michael Partridge

    Jengel

  • Howard Douglas

    Howard Douglas

    Tweest

  • Trevor Reid

    Trevor Reid

    Inspector Gringall

  • Frank Sieman

    Frank Sieman

    Sergeant Fields

  • John Ainsworth

    John Ainsworth

    P.C. Masters

  • Brenda Gay

    Brenda Gay

    Secretary of William Meraulton

  • Peter Neil

    Peter Neil

    William Meraulton

  • John Miller

    John Miller

    Manservant

  • Roger Williams

    Roger Williams

    Bellamy Meraulton

  • Belinda Lee

    Belinda Lee

    Jenny Appleby

  • Robert Moore

    Robert Moore

    Nightclub Manager

  • Alex Gallier

    Alex Gallier

    Compere (as Alex De Gallier)

  • John Longden

    John Longden

    Jeremy Meraulton

  • Frank Henderson

    Frank Henderson

    Paul Meraulton

  • Doug Robinson

    Doug Robinson

    Man (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'; ?>
Meet Mr. Callaghan

Cast (22)

  • Derrick De Marney

    Derrick De Marney

    Slim Callaghan

  • Harriette Johns

    Harriette Johns

    Cynthia Meraulton

  • Adrienne Corri

    Adrienne Corri

    Mayolo

  • Robert Adair

    Robert Adair

    August Meraulton

  • Delphi Lawrence

    Delphi Lawrence

    Effie Perkins

  • Michael Balfour

    Michael Balfour

    Coffee Stallkeeper

  • Larry Burns

    Larry Burns

    Darky

  • Michael Partridge

    Michael Partridge

    Jengel

  • Howard Douglas

    Howard Douglas

    Tweest

  • Trevor Reid

    Trevor Reid

    Inspector Gringall

  • Frank Sieman

    Frank Sieman

    Sergeant Fields

  • John Ainsworth

    John Ainsworth

    P.C. Masters

  • Brenda Gay

    Brenda Gay

    Secretary of William Meraulton

  • Peter Neil

    Peter Neil

    William Meraulton

  • John Miller

    John Miller

    Manservant

  • Roger Williams

    Roger Williams

    Bellamy Meraulton

  • Belinda Lee

    Belinda Lee

    Jenny Appleby

  • Robert Moore

    Robert Moore

    Nightclub Manager

  • Alex Gallier

    Alex Gallier

    Compere (as Alex De Gallier)

  • John Longden

    John Longden

    Jeremy Meraulton

  • Frank Henderson

    Frank Henderson

    Paul Meraulton

  • Doug Robinson

    Doug Robinson

    Man (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'; ?>
Meet Mr. Callaghan

Cast (22)

  • Derrick De Marney

    Derrick De Marney

    Slim Callaghan

  • Harriette Johns

    Harriette Johns

    Cynthia Meraulton

  • Adrienne Corri

    Adrienne Corri

    Mayolo

  • Robert Adair

    Robert Adair

    August Meraulton

  • Delphi Lawrence

    Delphi Lawrence

    Effie Perkins

  • Michael Balfour

    Michael Balfour

    Coffee Stallkeeper

  • Larry Burns

    Larry Burns

    Darky

  • Michael Partridge

    Michael Partridge

    Jengel

  • Howard Douglas

    Howard Douglas

    Tweest

  • Trevor Reid

    Trevor Reid

    Inspector Gringall

  • Frank Sieman

    Frank Sieman

    Sergeant Fields

  • John Ainsworth

    John Ainsworth

    P.C. Masters

  • Brenda Gay

    Brenda Gay

    Secretary of William Meraulton

  • Peter Neil

    Peter Neil

    William Meraulton

  • John Miller

    John Miller

    Manservant

  • Roger Williams

    Roger Williams

    Bellamy Meraulton

  • Belinda Lee

    Belinda Lee

    Jenny Appleby

  • Robert Moore

    Robert Moore

    Nightclub Manager

  • Alex Gallier

    Alex Gallier

    Compere (as Alex De Gallier)

  • John Longden

    John Longden

    Jeremy Meraulton

  • Frank Henderson

    Frank Henderson

    Paul Meraulton

  • Doug Robinson

    Doug Robinson

    Man (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'; ?>
Meet Mr. Callaghan

Cast (22)

  • Derrick De Marney

    Derrick De Marney

    Slim Callaghan

  • Harriette Johns

    Harriette Johns

    Cynthia Meraulton

  • Adrienne Corri

    Adrienne Corri

    Mayolo

  • Robert Adair

    Robert Adair

    August Meraulton

  • Delphi Lawrence

    Delphi Lawrence

    Effie Perkins

  • Michael Balfour

    Michael Balfour

    Coffee Stallkeeper

  • Larry Burns

    Larry Burns

    Darky

  • Michael Partridge

    Michael Partridge

    Jengel

  • Howard Douglas

    Howard Douglas

    Tweest

  • Trevor Reid

    Trevor Reid

    Inspector Gringall

  • Frank Sieman

    Frank Sieman

    Sergeant Fields

  • John Ainsworth

    John Ainsworth

    P.C. Masters

  • Brenda Gay

    Brenda Gay

    Secretary of William Meraulton

  • Peter Neil

    Peter Neil

    William Meraulton

  • John Miller

    John Miller

    Manservant

  • Roger Williams

    Roger Williams

    Bellamy Meraulton

  • Belinda Lee

    Belinda Lee

    Jenny Appleby

  • Robert Moore

    Robert Moore

    Nightclub Manager

  • Alex Gallier

    Alex Gallier

    Compere (as Alex De Gallier)

  • John Longden

    John Longden

    Jeremy Meraulton

  • Frank Henderson

    Frank Henderson

    Paul Meraulton

  • Doug Robinson

    Doug Robinson

    Man (uncredited)