The Terry Fox Story

Cast (37)

  • Eric Fryer

    Eric Fryer

    Terry Fox

  • Robert Duvall

    Robert Duvall

    Bill Vigars

  • Chris Makepeace

    Chris Makepeace

    Darrell Fox

  • Elva Mai Hoover

    Elva Mai Hoover

    Betty Fox

  • Frank Adamson

    Frank Adamson

    Rolly Fox

  • Michael Zelniker

    Michael Zelniker

    Doug Alward

  • Rosalind Chao

    Rosalind Chao

    Rika Noda

  • Marie McCann

    Marie McCann

    Judith Fox

  • Clyde Rose

    Clyde Rose

    Fisherman

  • Austin Davis

    Austin Davis

    NFLD Merchant

  • Matt Craven

    Matt Craven

    Bob Cady

  • Jeremy Brown

    Jeremy Brown

    M.C. Nathan Phillips Square

  • Sheldon Rybowski

    Sheldon Rybowski

    Gogi

  • Dorothy Wyatt

    Dorothy Wyatt

    Mayor Wyatt

  • Steven Hunter

    Steven Hunter

    Official at Barrie

  • Robert Desroches

    Robert Desroches

    French Canadian Driver

  • Jayne Foster

    Jayne Foster

    Jeffrey's Mother

  • Karen Racicot

    Karen Racicot

    French Canadian Waitress

  • Howard Siegel

    Howard Siegel

    Orderly

  • Laura Vickers

    Laura Vickers

    Jill

  • Chris Stodard

    Chris Stodard

    Scott

  • Gary Darycott

    Gary Darycott

    Gregg

  • Gary Baker

    Gary Baker

    Spectator

  • Wayne Brace

    Wayne Brace

    Intro Voice

  • Barry Greene

    Barry Greene

    Man in Crowd #1

  • Al Coombs

    Al Coombs

    Man in Crowd #2

  • Lori Chodos

    Lori Chodos

    Girl #1

  • Laurie Oberding

    Laurie Oberding

    Girl #2

  • Jaclyn Stevens

    Jaclyn Stevens

    Girl #3

  • Ian Heath

    Ian Heath

    Little Boy

  • Brian Kaulback

    Brian Kaulback

    Man with Bullhorn

  • Murray Lowry

    Murray Lowry

    Man with $5

  • Susan Payne

    Susan Payne

    Rika's Friend

  • Saul Rubinek

    Saul Rubinek

    Dan Grey

  • Chuck Shamata

    Chuck Shamata

    Wilson

  • R.H. Thomson

    R.H. Thomson

    Dr. Simon

  • Patrick Watson

    Patrick Watson

    Peg Leg

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 Terry Fox Story

Cast (37)

  • Eric Fryer

    Eric Fryer

    Terry Fox

  • Robert Duvall

    Robert Duvall

    Bill Vigars

  • Chris Makepeace

    Chris Makepeace

    Darrell Fox

  • Elva Mai Hoover

    Elva Mai Hoover

    Betty Fox

  • Frank Adamson

    Frank Adamson

    Rolly Fox

  • Michael Zelniker

    Michael Zelniker

    Doug Alward

  • Rosalind Chao

    Rosalind Chao

    Rika Noda

  • Marie McCann

    Marie McCann

    Judith Fox

  • Clyde Rose

    Clyde Rose

    Fisherman

  • Austin Davis

    Austin Davis

    NFLD Merchant

  • Matt Craven

    Matt Craven

    Bob Cady

  • Jeremy Brown

    Jeremy Brown

    M.C. Nathan Phillips Square

  • Sheldon Rybowski

    Sheldon Rybowski

    Gogi

  • Dorothy Wyatt

    Dorothy Wyatt

    Mayor Wyatt

  • Steven Hunter

    Steven Hunter

    Official at Barrie

  • Robert Desroches

    Robert Desroches

    French Canadian Driver

  • Jayne Foster

    Jayne Foster

    Jeffrey's Mother

  • Karen Racicot

    Karen Racicot

    French Canadian Waitress

  • Howard Siegel

    Howard Siegel

    Orderly

  • Laura Vickers

    Laura Vickers

    Jill

  • Chris Stodard

    Chris Stodard

    Scott

  • Gary Darycott

    Gary Darycott

    Gregg

  • Gary Baker

    Gary Baker

    Spectator

  • Wayne Brace

    Wayne Brace

    Intro Voice

  • Barry Greene

    Barry Greene

    Man in Crowd #1

  • Al Coombs

    Al Coombs

    Man in Crowd #2

  • Lori Chodos

    Lori Chodos

    Girl #1

  • Laurie Oberding

    Laurie Oberding

    Girl #2

  • Jaclyn Stevens

    Jaclyn Stevens

    Girl #3

  • Ian Heath

    Ian Heath

    Little Boy

  • Brian Kaulback

    Brian Kaulback

    Man with Bullhorn

  • Murray Lowry

    Murray Lowry

    Man with $5

  • Susan Payne

    Susan Payne

    Rika's Friend

  • Saul Rubinek

    Saul Rubinek

    Dan Grey

  • Chuck Shamata

    Chuck Shamata

    Wilson

  • R.H. Thomson

    R.H. Thomson

    Dr. Simon

  • Patrick Watson

    Patrick Watson

    Peg Leg

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 Terry Fox Story

Cast (37)

  • Eric Fryer

    Eric Fryer

    Terry Fox

  • Robert Duvall

    Robert Duvall

    Bill Vigars

  • Chris Makepeace

    Chris Makepeace

    Darrell Fox

  • Elva Mai Hoover

    Elva Mai Hoover

    Betty Fox

  • Frank Adamson

    Frank Adamson

    Rolly Fox

  • Michael Zelniker

    Michael Zelniker

    Doug Alward

  • Rosalind Chao

    Rosalind Chao

    Rika Noda

  • Marie McCann

    Marie McCann

    Judith Fox

  • Clyde Rose

    Clyde Rose

    Fisherman

  • Austin Davis

    Austin Davis

    NFLD Merchant

  • Matt Craven

    Matt Craven

    Bob Cady

  • Jeremy Brown

    Jeremy Brown

    M.C. Nathan Phillips Square

  • Sheldon Rybowski

    Sheldon Rybowski

    Gogi

  • Dorothy Wyatt

    Dorothy Wyatt

    Mayor Wyatt

  • Steven Hunter

    Steven Hunter

    Official at Barrie

  • Robert Desroches

    Robert Desroches

    French Canadian Driver

  • Jayne Foster

    Jayne Foster

    Jeffrey's Mother

  • Karen Racicot

    Karen Racicot

    French Canadian Waitress

  • Howard Siegel

    Howard Siegel

    Orderly

  • Laura Vickers

    Laura Vickers

    Jill

  • Chris Stodard

    Chris Stodard

    Scott

  • Gary Darycott

    Gary Darycott

    Gregg

  • Gary Baker

    Gary Baker

    Spectator

  • Wayne Brace

    Wayne Brace

    Intro Voice

  • Barry Greene

    Barry Greene

    Man in Crowd #1

  • Al Coombs

    Al Coombs

    Man in Crowd #2

  • Lori Chodos

    Lori Chodos

    Girl #1

  • Laurie Oberding

    Laurie Oberding

    Girl #2

  • Jaclyn Stevens

    Jaclyn Stevens

    Girl #3

  • Ian Heath

    Ian Heath

    Little Boy

  • Brian Kaulback

    Brian Kaulback

    Man with Bullhorn

  • Murray Lowry

    Murray Lowry

    Man with $5

  • Susan Payne

    Susan Payne

    Rika's Friend

  • Saul Rubinek

    Saul Rubinek

    Dan Grey

  • Chuck Shamata

    Chuck Shamata

    Wilson

  • R.H. Thomson

    R.H. Thomson

    Dr. Simon

  • Patrick Watson

    Patrick Watson

    Peg Leg

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 Terry Fox Story

Cast (37)

  • Eric Fryer

    Eric Fryer

    Terry Fox

  • Robert Duvall

    Robert Duvall

    Bill Vigars

  • Chris Makepeace

    Chris Makepeace

    Darrell Fox

  • Elva Mai Hoover

    Elva Mai Hoover

    Betty Fox

  • Frank Adamson

    Frank Adamson

    Rolly Fox

  • Michael Zelniker

    Michael Zelniker

    Doug Alward

  • Rosalind Chao

    Rosalind Chao

    Rika Noda

  • Marie McCann

    Marie McCann

    Judith Fox

  • Clyde Rose

    Clyde Rose

    Fisherman

  • Austin Davis

    Austin Davis

    NFLD Merchant

  • Matt Craven

    Matt Craven

    Bob Cady

  • Jeremy Brown

    Jeremy Brown

    M.C. Nathan Phillips Square

  • Sheldon Rybowski

    Sheldon Rybowski

    Gogi

  • Dorothy Wyatt

    Dorothy Wyatt

    Mayor Wyatt

  • Steven Hunter

    Steven Hunter

    Official at Barrie

  • Robert Desroches

    Robert Desroches

    French Canadian Driver

  • Jayne Foster

    Jayne Foster

    Jeffrey's Mother

  • Karen Racicot

    Karen Racicot

    French Canadian Waitress

  • Howard Siegel

    Howard Siegel

    Orderly

  • Laura Vickers

    Laura Vickers

    Jill

  • Chris Stodard

    Chris Stodard

    Scott

  • Gary Darycott

    Gary Darycott

    Gregg

  • Gary Baker

    Gary Baker

    Spectator

  • Wayne Brace

    Wayne Brace

    Intro Voice

  • Barry Greene

    Barry Greene

    Man in Crowd #1

  • Al Coombs

    Al Coombs

    Man in Crowd #2

  • Lori Chodos

    Lori Chodos

    Girl #1

  • Laurie Oberding

    Laurie Oberding

    Girl #2

  • Jaclyn Stevens

    Jaclyn Stevens

    Girl #3

  • Ian Heath

    Ian Heath

    Little Boy

  • Brian Kaulback

    Brian Kaulback

    Man with Bullhorn

  • Murray Lowry

    Murray Lowry

    Man with $5

  • Susan Payne

    Susan Payne

    Rika's Friend

  • Saul Rubinek

    Saul Rubinek

    Dan Grey

  • Chuck Shamata

    Chuck Shamata

    Wilson

  • R.H. Thomson

    R.H. Thomson

    Dr. Simon

  • Patrick Watson

    Patrick Watson

    Peg Leg

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 Terry Fox Story

Cast (37)

  • Eric Fryer

    Eric Fryer

    Terry Fox

  • Robert Duvall

    Robert Duvall

    Bill Vigars

  • Chris Makepeace

    Chris Makepeace

    Darrell Fox

  • Elva Mai Hoover

    Elva Mai Hoover

    Betty Fox

  • Frank Adamson

    Frank Adamson

    Rolly Fox

  • Michael Zelniker

    Michael Zelniker

    Doug Alward

  • Rosalind Chao

    Rosalind Chao

    Rika Noda

  • Marie McCann

    Marie McCann

    Judith Fox

  • Clyde Rose

    Clyde Rose

    Fisherman

  • Austin Davis

    Austin Davis

    NFLD Merchant

  • Matt Craven

    Matt Craven

    Bob Cady

  • Jeremy Brown

    Jeremy Brown

    M.C. Nathan Phillips Square

  • Sheldon Rybowski

    Sheldon Rybowski

    Gogi

  • Dorothy Wyatt

    Dorothy Wyatt

    Mayor Wyatt

  • Steven Hunter

    Steven Hunter

    Official at Barrie

  • Robert Desroches

    Robert Desroches

    French Canadian Driver

  • Jayne Foster

    Jayne Foster

    Jeffrey's Mother

  • Karen Racicot

    Karen Racicot

    French Canadian Waitress

  • Howard Siegel

    Howard Siegel

    Orderly

  • Laura Vickers

    Laura Vickers

    Jill

  • Chris Stodard

    Chris Stodard

    Scott

  • Gary Darycott

    Gary Darycott

    Gregg

  • Gary Baker

    Gary Baker

    Spectator

  • Wayne Brace

    Wayne Brace

    Intro Voice

  • Barry Greene

    Barry Greene

    Man in Crowd #1

  • Al Coombs

    Al Coombs

    Man in Crowd #2

  • Lori Chodos

    Lori Chodos

    Girl #1

  • Laurie Oberding

    Laurie Oberding

    Girl #2

  • Jaclyn Stevens

    Jaclyn Stevens

    Girl #3

  • Ian Heath

    Ian Heath

    Little Boy

  • Brian Kaulback

    Brian Kaulback

    Man with Bullhorn

  • Murray Lowry

    Murray Lowry

    Man with $5

  • Susan Payne

    Susan Payne

    Rika's Friend

  • Saul Rubinek

    Saul Rubinek

    Dan Grey

  • Chuck Shamata

    Chuck Shamata

    Wilson

  • R.H. Thomson

    R.H. Thomson

    Dr. Simon

  • Patrick Watson

    Patrick Watson

    Peg Leg

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 Terry Fox Story

Cast (37)

  • Eric Fryer

    Eric Fryer

    Terry Fox

  • Robert Duvall

    Robert Duvall

    Bill Vigars

  • Chris Makepeace

    Chris Makepeace

    Darrell Fox

  • Elva Mai Hoover

    Elva Mai Hoover

    Betty Fox

  • Frank Adamson

    Frank Adamson

    Rolly Fox

  • Michael Zelniker

    Michael Zelniker

    Doug Alward

  • Rosalind Chao

    Rosalind Chao

    Rika Noda

  • Marie McCann

    Marie McCann

    Judith Fox

  • Clyde Rose

    Clyde Rose

    Fisherman

  • Austin Davis

    Austin Davis

    NFLD Merchant

  • Matt Craven

    Matt Craven

    Bob Cady

  • Jeremy Brown

    Jeremy Brown

    M.C. Nathan Phillips Square

  • Sheldon Rybowski

    Sheldon Rybowski

    Gogi

  • Dorothy Wyatt

    Dorothy Wyatt

    Mayor Wyatt

  • Steven Hunter

    Steven Hunter

    Official at Barrie

  • Robert Desroches

    Robert Desroches

    French Canadian Driver

  • Jayne Foster

    Jayne Foster

    Jeffrey's Mother

  • Karen Racicot

    Karen Racicot

    French Canadian Waitress

  • Howard Siegel

    Howard Siegel

    Orderly

  • Laura Vickers

    Laura Vickers

    Jill

  • Chris Stodard

    Chris Stodard

    Scott

  • Gary Darycott

    Gary Darycott

    Gregg

  • Gary Baker

    Gary Baker

    Spectator

  • Wayne Brace

    Wayne Brace

    Intro Voice

  • Barry Greene

    Barry Greene

    Man in Crowd #1

  • Al Coombs

    Al Coombs

    Man in Crowd #2

  • Lori Chodos

    Lori Chodos

    Girl #1

  • Laurie Oberding

    Laurie Oberding

    Girl #2

  • Jaclyn Stevens

    Jaclyn Stevens

    Girl #3

  • Ian Heath

    Ian Heath

    Little Boy

  • Brian Kaulback

    Brian Kaulback

    Man with Bullhorn

  • Murray Lowry

    Murray Lowry

    Man with $5

  • Susan Payne

    Susan Payne

    Rika's Friend

  • Saul Rubinek

    Saul Rubinek

    Dan Grey

  • Chuck Shamata

    Chuck Shamata

    Wilson

  • R.H. Thomson

    R.H. Thomson

    Dr. Simon

  • Patrick Watson

    Patrick Watson

    Peg Leg

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 Terry Fox Story

Cast (37)

  • Eric Fryer

    Eric Fryer

    Terry Fox

  • Robert Duvall

    Robert Duvall

    Bill Vigars

  • Chris Makepeace

    Chris Makepeace

    Darrell Fox

  • Elva Mai Hoover

    Elva Mai Hoover

    Betty Fox

  • Frank Adamson

    Frank Adamson

    Rolly Fox

  • Michael Zelniker

    Michael Zelniker

    Doug Alward

  • Rosalind Chao

    Rosalind Chao

    Rika Noda

  • Marie McCann

    Marie McCann

    Judith Fox

  • Clyde Rose

    Clyde Rose

    Fisherman

  • Austin Davis

    Austin Davis

    NFLD Merchant

  • Matt Craven

    Matt Craven

    Bob Cady

  • Jeremy Brown

    Jeremy Brown

    M.C. Nathan Phillips Square

  • Sheldon Rybowski

    Sheldon Rybowski

    Gogi

  • Dorothy Wyatt

    Dorothy Wyatt

    Mayor Wyatt

  • Steven Hunter

    Steven Hunter

    Official at Barrie

  • Robert Desroches

    Robert Desroches

    French Canadian Driver

  • Jayne Foster

    Jayne Foster

    Jeffrey's Mother

  • Karen Racicot

    Karen Racicot

    French Canadian Waitress

  • Howard Siegel

    Howard Siegel

    Orderly

  • Laura Vickers

    Laura Vickers

    Jill

  • Chris Stodard

    Chris Stodard

    Scott

  • Gary Darycott

    Gary Darycott

    Gregg

  • Gary Baker

    Gary Baker

    Spectator

  • Wayne Brace

    Wayne Brace

    Intro Voice

  • Barry Greene

    Barry Greene

    Man in Crowd #1

  • Al Coombs

    Al Coombs

    Man in Crowd #2

  • Lori Chodos

    Lori Chodos

    Girl #1

  • Laurie Oberding

    Laurie Oberding

    Girl #2

  • Jaclyn Stevens

    Jaclyn Stevens

    Girl #3

  • Ian Heath

    Ian Heath

    Little Boy

  • Brian Kaulback

    Brian Kaulback

    Man with Bullhorn

  • Murray Lowry

    Murray Lowry

    Man with $5

  • Susan Payne

    Susan Payne

    Rika's Friend

  • Saul Rubinek

    Saul Rubinek

    Dan Grey

  • Chuck Shamata

    Chuck Shamata

    Wilson

  • R.H. Thomson

    R.H. Thomson

    Dr. Simon

  • Patrick Watson

    Patrick Watson

    Peg Leg