Mark Twain and Me

Cast (23)

  • Jason Robards

    Jason Robards

    Mark Twain

  • Talia Shire

    Talia Shire

    Jean Clemens

  • R.H. Thomson

    R.H. Thomson

    Albert Paine

  • Fiona Reid

    Fiona Reid

    Mrs. Quick

  • Chris Wiggins

    Chris Wiggins

    Captain

  • Amy Stewart

    Amy Stewart

    Dorothy Quick

  • Anna Ferguson

    Anna Ferguson

    Arabella

  • Chapelle Jaffe

    Chapelle Jaffe

    Sarah Hardwig

  • Colin Fox

    Colin Fox

    Dr. Quintard

  • Susan Coyne

    Susan Coyne

    Miss Hobby

  • Bunty Webb

    Bunty Webb

    Minnie

  • Jenny Turner

    Jenny Turner

    Mrs. Woods

  • Brian Paul

    Brian Paul

    Ship's Purser

  • Corinne Conley

    Corinne Conley

    Saleswoman

  • Michael Polley

    Michael Polley

    Orchestra Leader

  • James Mainprize

    James Mainprize

    Concierge

  • Lee MacDougall

    Lee MacDougall

    Porter

  • Roy Lewis

    Roy Lewis

    Carriage Man

  • John Shepherd

    John Shepherd

    Oxford Dean

  • Douglas E. Hughes

    Douglas E. Hughes

    Reporter #1

  • John Bayliss

    John Bayliss

    Reporter #2

  • Yank Azman

    Yank Azman

    Reporter #3

  • Kelly Spalding

    Kelly Spalding

    Schoolgirl #1

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'; ?>
Mark Twain and Me

Cast (23)

  • Jason Robards

    Jason Robards

    Mark Twain

  • Talia Shire

    Talia Shire

    Jean Clemens

  • R.H. Thomson

    R.H. Thomson

    Albert Paine

  • Fiona Reid

    Fiona Reid

    Mrs. Quick

  • Chris Wiggins

    Chris Wiggins

    Captain

  • Amy Stewart

    Amy Stewart

    Dorothy Quick

  • Anna Ferguson

    Anna Ferguson

    Arabella

  • Chapelle Jaffe

    Chapelle Jaffe

    Sarah Hardwig

  • Colin Fox

    Colin Fox

    Dr. Quintard

  • Susan Coyne

    Susan Coyne

    Miss Hobby

  • Bunty Webb

    Bunty Webb

    Minnie

  • Jenny Turner

    Jenny Turner

    Mrs. Woods

  • Brian Paul

    Brian Paul

    Ship's Purser

  • Corinne Conley

    Corinne Conley

    Saleswoman

  • Michael Polley

    Michael Polley

    Orchestra Leader

  • James Mainprize

    James Mainprize

    Concierge

  • Lee MacDougall

    Lee MacDougall

    Porter

  • Roy Lewis

    Roy Lewis

    Carriage Man

  • John Shepherd

    John Shepherd

    Oxford Dean

  • Douglas E. Hughes

    Douglas E. Hughes

    Reporter #1

  • John Bayliss

    John Bayliss

    Reporter #2

  • Yank Azman

    Yank Azman

    Reporter #3

  • Kelly Spalding

    Kelly Spalding

    Schoolgirl #1

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'; ?>
Mark Twain and Me

Cast (23)

  • Jason Robards

    Jason Robards

    Mark Twain

  • Talia Shire

    Talia Shire

    Jean Clemens

  • R.H. Thomson

    R.H. Thomson

    Albert Paine

  • Fiona Reid

    Fiona Reid

    Mrs. Quick

  • Chris Wiggins

    Chris Wiggins

    Captain

  • Amy Stewart

    Amy Stewart

    Dorothy Quick

  • Anna Ferguson

    Anna Ferguson

    Arabella

  • Chapelle Jaffe

    Chapelle Jaffe

    Sarah Hardwig

  • Colin Fox

    Colin Fox

    Dr. Quintard

  • Susan Coyne

    Susan Coyne

    Miss Hobby

  • Bunty Webb

    Bunty Webb

    Minnie

  • Jenny Turner

    Jenny Turner

    Mrs. Woods

  • Brian Paul

    Brian Paul

    Ship's Purser

  • Corinne Conley

    Corinne Conley

    Saleswoman

  • Michael Polley

    Michael Polley

    Orchestra Leader

  • James Mainprize

    James Mainprize

    Concierge

  • Lee MacDougall

    Lee MacDougall

    Porter

  • Roy Lewis

    Roy Lewis

    Carriage Man

  • John Shepherd

    John Shepherd

    Oxford Dean

  • Douglas E. Hughes

    Douglas E. Hughes

    Reporter #1

  • John Bayliss

    John Bayliss

    Reporter #2

  • Yank Azman

    Yank Azman

    Reporter #3

  • Kelly Spalding

    Kelly Spalding

    Schoolgirl #1

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'; ?>
Mark Twain and Me

Cast (23)

  • Jason Robards

    Jason Robards

    Mark Twain

  • Talia Shire

    Talia Shire

    Jean Clemens

  • R.H. Thomson

    R.H. Thomson

    Albert Paine

  • Fiona Reid

    Fiona Reid

    Mrs. Quick

  • Chris Wiggins

    Chris Wiggins

    Captain

  • Amy Stewart

    Amy Stewart

    Dorothy Quick

  • Anna Ferguson

    Anna Ferguson

    Arabella

  • Chapelle Jaffe

    Chapelle Jaffe

    Sarah Hardwig

  • Colin Fox

    Colin Fox

    Dr. Quintard

  • Susan Coyne

    Susan Coyne

    Miss Hobby

  • Bunty Webb

    Bunty Webb

    Minnie

  • Jenny Turner

    Jenny Turner

    Mrs. Woods

  • Brian Paul

    Brian Paul

    Ship's Purser

  • Corinne Conley

    Corinne Conley

    Saleswoman

  • Michael Polley

    Michael Polley

    Orchestra Leader

  • James Mainprize

    James Mainprize

    Concierge

  • Lee MacDougall

    Lee MacDougall

    Porter

  • Roy Lewis

    Roy Lewis

    Carriage Man

  • John Shepherd

    John Shepherd

    Oxford Dean

  • Douglas E. Hughes

    Douglas E. Hughes

    Reporter #1

  • John Bayliss

    John Bayliss

    Reporter #2

  • Yank Azman

    Yank Azman

    Reporter #3

  • Kelly Spalding

    Kelly Spalding

    Schoolgirl #1

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'; ?>
Mark Twain and Me

Cast (23)

  • Jason Robards

    Jason Robards

    Mark Twain

  • Talia Shire

    Talia Shire

    Jean Clemens

  • R.H. Thomson

    R.H. Thomson

    Albert Paine

  • Fiona Reid

    Fiona Reid

    Mrs. Quick

  • Chris Wiggins

    Chris Wiggins

    Captain

  • Amy Stewart

    Amy Stewart

    Dorothy Quick

  • Anna Ferguson

    Anna Ferguson

    Arabella

  • Chapelle Jaffe

    Chapelle Jaffe

    Sarah Hardwig

  • Colin Fox

    Colin Fox

    Dr. Quintard

  • Susan Coyne

    Susan Coyne

    Miss Hobby

  • Bunty Webb

    Bunty Webb

    Minnie

  • Jenny Turner

    Jenny Turner

    Mrs. Woods

  • Brian Paul

    Brian Paul

    Ship's Purser

  • Corinne Conley

    Corinne Conley

    Saleswoman

  • Michael Polley

    Michael Polley

    Orchestra Leader

  • James Mainprize

    James Mainprize

    Concierge

  • Lee MacDougall

    Lee MacDougall

    Porter

  • Roy Lewis

    Roy Lewis

    Carriage Man

  • John Shepherd

    John Shepherd

    Oxford Dean

  • Douglas E. Hughes

    Douglas E. Hughes

    Reporter #1

  • John Bayliss

    John Bayliss

    Reporter #2

  • Yank Azman

    Yank Azman

    Reporter #3

  • Kelly Spalding

    Kelly Spalding

    Schoolgirl #1

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'; ?>
Mark Twain and Me

Cast (23)

  • Jason Robards

    Jason Robards

    Mark Twain

  • Talia Shire

    Talia Shire

    Jean Clemens

  • R.H. Thomson

    R.H. Thomson

    Albert Paine

  • Fiona Reid

    Fiona Reid

    Mrs. Quick

  • Chris Wiggins

    Chris Wiggins

    Captain

  • Amy Stewart

    Amy Stewart

    Dorothy Quick

  • Anna Ferguson

    Anna Ferguson

    Arabella

  • Chapelle Jaffe

    Chapelle Jaffe

    Sarah Hardwig

  • Colin Fox

    Colin Fox

    Dr. Quintard

  • Susan Coyne

    Susan Coyne

    Miss Hobby

  • Bunty Webb

    Bunty Webb

    Minnie

  • Jenny Turner

    Jenny Turner

    Mrs. Woods

  • Brian Paul

    Brian Paul

    Ship's Purser

  • Corinne Conley

    Corinne Conley

    Saleswoman

  • Michael Polley

    Michael Polley

    Orchestra Leader

  • James Mainprize

    James Mainprize

    Concierge

  • Lee MacDougall

    Lee MacDougall

    Porter

  • Roy Lewis

    Roy Lewis

    Carriage Man

  • John Shepherd

    John Shepherd

    Oxford Dean

  • Douglas E. Hughes

    Douglas E. Hughes

    Reporter #1

  • John Bayliss

    John Bayliss

    Reporter #2

  • Yank Azman

    Yank Azman

    Reporter #3

  • Kelly Spalding

    Kelly Spalding

    Schoolgirl #1

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'; ?>
Mark Twain and Me

Cast (23)

  • Jason Robards

    Jason Robards

    Mark Twain

  • Talia Shire

    Talia Shire

    Jean Clemens

  • R.H. Thomson

    R.H. Thomson

    Albert Paine

  • Fiona Reid

    Fiona Reid

    Mrs. Quick

  • Chris Wiggins

    Chris Wiggins

    Captain

  • Amy Stewart

    Amy Stewart

    Dorothy Quick

  • Anna Ferguson

    Anna Ferguson

    Arabella

  • Chapelle Jaffe

    Chapelle Jaffe

    Sarah Hardwig

  • Colin Fox

    Colin Fox

    Dr. Quintard

  • Susan Coyne

    Susan Coyne

    Miss Hobby

  • Bunty Webb

    Bunty Webb

    Minnie

  • Jenny Turner

    Jenny Turner

    Mrs. Woods

  • Brian Paul

    Brian Paul

    Ship's Purser

  • Corinne Conley

    Corinne Conley

    Saleswoman

  • Michael Polley

    Michael Polley

    Orchestra Leader

  • James Mainprize

    James Mainprize

    Concierge

  • Lee MacDougall

    Lee MacDougall

    Porter

  • Roy Lewis

    Roy Lewis

    Carriage Man

  • John Shepherd

    John Shepherd

    Oxford Dean

  • Douglas E. Hughes

    Douglas E. Hughes

    Reporter #1

  • John Bayliss

    John Bayliss

    Reporter #2

  • Yank Azman

    Yank Azman

    Reporter #3

  • Kelly Spalding

    Kelly Spalding

    Schoolgirl #1