Now and Then

Cast (36)

  • Christina Ricci

    Christina Ricci

    Roberta

  • Rosie O'Donnell

    Rosie O'Donnell

    Roberta

  • Thora Birch

    Thora Birch

    Teeny

  • Melanie Griffith

    Melanie Griffith

    Teeny

  • Gaby Hoffmann

    Gaby Hoffmann

    Samantha

  • Demi Moore

    Demi Moore

    Samantha

  • Ashleigh Aston Moore

    Ashleigh Aston Moore

    Chrissy

  • Rita Wilson

    Rita Wilson

    Chrissy

  • Devon Sawa

    Devon Sawa

    Scott Wormer

  • Walter Sparrow

    Walter Sparrow

    Crazy Pete

  • Cloris Leachman

    Cloris Leachman

    Grandma Albertson

  • Lolita Davidovich

    Lolita Davidovich

    Mrs. Albertson

  • Janeane Garofalo

    Janeane Garofalo

    Wiladene

  • Hank Azaria

    Hank Azaria

    Bud Kent

  • Bonnie Hunt

    Bonnie Hunt

    Mrs. DeWitt

  • Rumer Willis

    Rumer Willis

    Angela Albertson

  • Bradley Coryell

    Bradley Coryell

    The Wormers

  • Justin Humphrey

    Justin Humphrey

    The Wormers

  • Travis Robertson

    Travis Robertson

    The Wormers

  • James Wilson Keane

    James Wilson Keane

    Boy with Basketball

  • Ric Reitz

    Ric Reitz

    Mr. Albertson

  • Kellen Crosby

    Kellen Crosby

    Kenny

  • Joey Stinson

    Joey Stinson

    Outfielder

  • James Paul Cleckler

    James Paul Cleckler

    Catcher

  • Tucker Stone

    Tucker Stone

    Young Morton

  • Jamison B. Dowd

    Jamison B. Dowd

    Bully

  • Beverly Shelton

    Beverly Shelton

    Eda

  • Geoff McKnight

    Geoff McKnight

    Tractor-Driver

  • T.S. Morgan

    T.S. Morgan

    Limo Driver

  • Carl Espy

    Carl Espy

    Dr. Morton Williams

  • Alice Tew

    Alice Tew

    Baby

  • Brendan Fraser

    Brendan Fraser

    Vietnam Veteran (uncredited)

  • Rand Courtney

    Rand Courtney

    Brett Jones (uncredited)

  • Brandon Kleyla

    Brandon Kleyla

    Bobby Fricker (uncredited)

  • Haviland Stillwell

    Haviland Stillwell

    Emily (uncredited)

  • Dave Thompson

    Dave Thompson

    Bud's News Photographer (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'; ?>
Now and Then

Cast (36)

  • Christina Ricci

    Christina Ricci

    Roberta

  • Rosie O'Donnell

    Rosie O'Donnell

    Roberta

  • Thora Birch

    Thora Birch

    Teeny

  • Melanie Griffith

    Melanie Griffith

    Teeny

  • Gaby Hoffmann

    Gaby Hoffmann

    Samantha

  • Demi Moore

    Demi Moore

    Samantha

  • Ashleigh Aston Moore

    Ashleigh Aston Moore

    Chrissy

  • Rita Wilson

    Rita Wilson

    Chrissy

  • Devon Sawa

    Devon Sawa

    Scott Wormer

  • Walter Sparrow

    Walter Sparrow

    Crazy Pete

  • Cloris Leachman

    Cloris Leachman

    Grandma Albertson

  • Lolita Davidovich

    Lolita Davidovich

    Mrs. Albertson

  • Janeane Garofalo

    Janeane Garofalo

    Wiladene

  • Hank Azaria

    Hank Azaria

    Bud Kent

  • Bonnie Hunt

    Bonnie Hunt

    Mrs. DeWitt

  • Rumer Willis

    Rumer Willis

    Angela Albertson

  • Bradley Coryell

    Bradley Coryell

    The Wormers

  • Justin Humphrey

    Justin Humphrey

    The Wormers

  • Travis Robertson

    Travis Robertson

    The Wormers

  • James Wilson Keane

    James Wilson Keane

    Boy with Basketball

  • Ric Reitz

    Ric Reitz

    Mr. Albertson

  • Kellen Crosby

    Kellen Crosby

    Kenny

  • Joey Stinson

    Joey Stinson

    Outfielder

  • James Paul Cleckler

    James Paul Cleckler

    Catcher

  • Tucker Stone

    Tucker Stone

    Young Morton

  • Jamison B. Dowd

    Jamison B. Dowd

    Bully

  • Beverly Shelton

    Beverly Shelton

    Eda

  • Geoff McKnight

    Geoff McKnight

    Tractor-Driver

  • T.S. Morgan

    T.S. Morgan

    Limo Driver

  • Carl Espy

    Carl Espy

    Dr. Morton Williams

  • Alice Tew

    Alice Tew

    Baby

  • Brendan Fraser

    Brendan Fraser

    Vietnam Veteran (uncredited)

  • Rand Courtney

    Rand Courtney

    Brett Jones (uncredited)

  • Brandon Kleyla

    Brandon Kleyla

    Bobby Fricker (uncredited)

  • Haviland Stillwell

    Haviland Stillwell

    Emily (uncredited)

  • Dave Thompson

    Dave Thompson

    Bud's News Photographer (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'; ?>
Now and Then

Cast (36)

  • Christina Ricci

    Christina Ricci

    Roberta

  • Rosie O'Donnell

    Rosie O'Donnell

    Roberta

  • Thora Birch

    Thora Birch

    Teeny

  • Melanie Griffith

    Melanie Griffith

    Teeny

  • Gaby Hoffmann

    Gaby Hoffmann

    Samantha

  • Demi Moore

    Demi Moore

    Samantha

  • Ashleigh Aston Moore

    Ashleigh Aston Moore

    Chrissy

  • Rita Wilson

    Rita Wilson

    Chrissy

  • Devon Sawa

    Devon Sawa

    Scott Wormer

  • Walter Sparrow

    Walter Sparrow

    Crazy Pete

  • Cloris Leachman

    Cloris Leachman

    Grandma Albertson

  • Lolita Davidovich

    Lolita Davidovich

    Mrs. Albertson

  • Janeane Garofalo

    Janeane Garofalo

    Wiladene

  • Hank Azaria

    Hank Azaria

    Bud Kent

  • Bonnie Hunt

    Bonnie Hunt

    Mrs. DeWitt

  • Rumer Willis

    Rumer Willis

    Angela Albertson

  • Bradley Coryell

    Bradley Coryell

    The Wormers

  • Justin Humphrey

    Justin Humphrey

    The Wormers

  • Travis Robertson

    Travis Robertson

    The Wormers

  • James Wilson Keane

    James Wilson Keane

    Boy with Basketball

  • Ric Reitz

    Ric Reitz

    Mr. Albertson

  • Kellen Crosby

    Kellen Crosby

    Kenny

  • Joey Stinson

    Joey Stinson

    Outfielder

  • James Paul Cleckler

    James Paul Cleckler

    Catcher

  • Tucker Stone

    Tucker Stone

    Young Morton

  • Jamison B. Dowd

    Jamison B. Dowd

    Bully

  • Beverly Shelton

    Beverly Shelton

    Eda

  • Geoff McKnight

    Geoff McKnight

    Tractor-Driver

  • T.S. Morgan

    T.S. Morgan

    Limo Driver

  • Carl Espy

    Carl Espy

    Dr. Morton Williams

  • Alice Tew

    Alice Tew

    Baby

  • Brendan Fraser

    Brendan Fraser

    Vietnam Veteran (uncredited)

  • Rand Courtney

    Rand Courtney

    Brett Jones (uncredited)

  • Brandon Kleyla

    Brandon Kleyla

    Bobby Fricker (uncredited)

  • Haviland Stillwell

    Haviland Stillwell

    Emily (uncredited)

  • Dave Thompson

    Dave Thompson

    Bud's News Photographer (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'; ?>
Now and Then

Cast (36)

  • Christina Ricci

    Christina Ricci

    Roberta

  • Rosie O'Donnell

    Rosie O'Donnell

    Roberta

  • Thora Birch

    Thora Birch

    Teeny

  • Melanie Griffith

    Melanie Griffith

    Teeny

  • Gaby Hoffmann

    Gaby Hoffmann

    Samantha

  • Demi Moore

    Demi Moore

    Samantha

  • Ashleigh Aston Moore

    Ashleigh Aston Moore

    Chrissy

  • Rita Wilson

    Rita Wilson

    Chrissy

  • Devon Sawa

    Devon Sawa

    Scott Wormer

  • Walter Sparrow

    Walter Sparrow

    Crazy Pete

  • Cloris Leachman

    Cloris Leachman

    Grandma Albertson

  • Lolita Davidovich

    Lolita Davidovich

    Mrs. Albertson

  • Janeane Garofalo

    Janeane Garofalo

    Wiladene

  • Hank Azaria

    Hank Azaria

    Bud Kent

  • Bonnie Hunt

    Bonnie Hunt

    Mrs. DeWitt

  • Rumer Willis

    Rumer Willis

    Angela Albertson

  • Bradley Coryell

    Bradley Coryell

    The Wormers

  • Justin Humphrey

    Justin Humphrey

    The Wormers

  • Travis Robertson

    Travis Robertson

    The Wormers

  • James Wilson Keane

    James Wilson Keane

    Boy with Basketball

  • Ric Reitz

    Ric Reitz

    Mr. Albertson

  • Kellen Crosby

    Kellen Crosby

    Kenny

  • Joey Stinson

    Joey Stinson

    Outfielder

  • James Paul Cleckler

    James Paul Cleckler

    Catcher

  • Tucker Stone

    Tucker Stone

    Young Morton

  • Jamison B. Dowd

    Jamison B. Dowd

    Bully

  • Beverly Shelton

    Beverly Shelton

    Eda

  • Geoff McKnight

    Geoff McKnight

    Tractor-Driver

  • T.S. Morgan

    T.S. Morgan

    Limo Driver

  • Carl Espy

    Carl Espy

    Dr. Morton Williams

  • Alice Tew

    Alice Tew

    Baby

  • Brendan Fraser

    Brendan Fraser

    Vietnam Veteran (uncredited)

  • Rand Courtney

    Rand Courtney

    Brett Jones (uncredited)

  • Brandon Kleyla

    Brandon Kleyla

    Bobby Fricker (uncredited)

  • Haviland Stillwell

    Haviland Stillwell

    Emily (uncredited)

  • Dave Thompson

    Dave Thompson

    Bud's News Photographer (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'; ?>
Now and Then

Cast (36)

  • Christina Ricci

    Christina Ricci

    Roberta

  • Rosie O'Donnell

    Rosie O'Donnell

    Roberta

  • Thora Birch

    Thora Birch

    Teeny

  • Melanie Griffith

    Melanie Griffith

    Teeny

  • Gaby Hoffmann

    Gaby Hoffmann

    Samantha

  • Demi Moore

    Demi Moore

    Samantha

  • Ashleigh Aston Moore

    Ashleigh Aston Moore

    Chrissy

  • Rita Wilson

    Rita Wilson

    Chrissy

  • Devon Sawa

    Devon Sawa

    Scott Wormer

  • Walter Sparrow

    Walter Sparrow

    Crazy Pete

  • Cloris Leachman

    Cloris Leachman

    Grandma Albertson

  • Lolita Davidovich

    Lolita Davidovich

    Mrs. Albertson

  • Janeane Garofalo

    Janeane Garofalo

    Wiladene

  • Hank Azaria

    Hank Azaria

    Bud Kent

  • Bonnie Hunt

    Bonnie Hunt

    Mrs. DeWitt

  • Rumer Willis

    Rumer Willis

    Angela Albertson

  • Bradley Coryell

    Bradley Coryell

    The Wormers

  • Justin Humphrey

    Justin Humphrey

    The Wormers

  • Travis Robertson

    Travis Robertson

    The Wormers

  • James Wilson Keane

    James Wilson Keane

    Boy with Basketball

  • Ric Reitz

    Ric Reitz

    Mr. Albertson

  • Kellen Crosby

    Kellen Crosby

    Kenny

  • Joey Stinson

    Joey Stinson

    Outfielder

  • James Paul Cleckler

    James Paul Cleckler

    Catcher

  • Tucker Stone

    Tucker Stone

    Young Morton

  • Jamison B. Dowd

    Jamison B. Dowd

    Bully

  • Beverly Shelton

    Beverly Shelton

    Eda

  • Geoff McKnight

    Geoff McKnight

    Tractor-Driver

  • T.S. Morgan

    T.S. Morgan

    Limo Driver

  • Carl Espy

    Carl Espy

    Dr. Morton Williams

  • Alice Tew

    Alice Tew

    Baby

  • Brendan Fraser

    Brendan Fraser

    Vietnam Veteran (uncredited)

  • Rand Courtney

    Rand Courtney

    Brett Jones (uncredited)

  • Brandon Kleyla

    Brandon Kleyla

    Bobby Fricker (uncredited)

  • Haviland Stillwell

    Haviland Stillwell

    Emily (uncredited)

  • Dave Thompson

    Dave Thompson

    Bud's News Photographer (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'; ?>
Now and Then

Cast (36)

  • Christina Ricci

    Christina Ricci

    Roberta

  • Rosie O'Donnell

    Rosie O'Donnell

    Roberta

  • Thora Birch

    Thora Birch

    Teeny

  • Melanie Griffith

    Melanie Griffith

    Teeny

  • Gaby Hoffmann

    Gaby Hoffmann

    Samantha

  • Demi Moore

    Demi Moore

    Samantha

  • Ashleigh Aston Moore

    Ashleigh Aston Moore

    Chrissy

  • Rita Wilson

    Rita Wilson

    Chrissy

  • Devon Sawa

    Devon Sawa

    Scott Wormer

  • Walter Sparrow

    Walter Sparrow

    Crazy Pete

  • Cloris Leachman

    Cloris Leachman

    Grandma Albertson

  • Lolita Davidovich

    Lolita Davidovich

    Mrs. Albertson

  • Janeane Garofalo

    Janeane Garofalo

    Wiladene

  • Hank Azaria

    Hank Azaria

    Bud Kent

  • Bonnie Hunt

    Bonnie Hunt

    Mrs. DeWitt

  • Rumer Willis

    Rumer Willis

    Angela Albertson

  • Bradley Coryell

    Bradley Coryell

    The Wormers

  • Justin Humphrey

    Justin Humphrey

    The Wormers

  • Travis Robertson

    Travis Robertson

    The Wormers

  • James Wilson Keane

    James Wilson Keane

    Boy with Basketball

  • Ric Reitz

    Ric Reitz

    Mr. Albertson

  • Kellen Crosby

    Kellen Crosby

    Kenny

  • Joey Stinson

    Joey Stinson

    Outfielder

  • James Paul Cleckler

    James Paul Cleckler

    Catcher

  • Tucker Stone

    Tucker Stone

    Young Morton

  • Jamison B. Dowd

    Jamison B. Dowd

    Bully

  • Beverly Shelton

    Beverly Shelton

    Eda

  • Geoff McKnight

    Geoff McKnight

    Tractor-Driver

  • T.S. Morgan

    T.S. Morgan

    Limo Driver

  • Carl Espy

    Carl Espy

    Dr. Morton Williams

  • Alice Tew

    Alice Tew

    Baby

  • Brendan Fraser

    Brendan Fraser

    Vietnam Veteran (uncredited)

  • Rand Courtney

    Rand Courtney

    Brett Jones (uncredited)

  • Brandon Kleyla

    Brandon Kleyla

    Bobby Fricker (uncredited)

  • Haviland Stillwell

    Haviland Stillwell

    Emily (uncredited)

  • Dave Thompson

    Dave Thompson

    Bud's News Photographer (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'; ?>
Now and Then

Cast (36)

  • Christina Ricci

    Christina Ricci

    Roberta

  • Rosie O'Donnell

    Rosie O'Donnell

    Roberta

  • Thora Birch

    Thora Birch

    Teeny

  • Melanie Griffith

    Melanie Griffith

    Teeny

  • Gaby Hoffmann

    Gaby Hoffmann

    Samantha

  • Demi Moore

    Demi Moore

    Samantha

  • Ashleigh Aston Moore

    Ashleigh Aston Moore

    Chrissy

  • Rita Wilson

    Rita Wilson

    Chrissy

  • Devon Sawa

    Devon Sawa

    Scott Wormer

  • Walter Sparrow

    Walter Sparrow

    Crazy Pete

  • Cloris Leachman

    Cloris Leachman

    Grandma Albertson

  • Lolita Davidovich

    Lolita Davidovich

    Mrs. Albertson

  • Janeane Garofalo

    Janeane Garofalo

    Wiladene

  • Hank Azaria

    Hank Azaria

    Bud Kent

  • Bonnie Hunt

    Bonnie Hunt

    Mrs. DeWitt

  • Rumer Willis

    Rumer Willis

    Angela Albertson

  • Bradley Coryell

    Bradley Coryell

    The Wormers

  • Justin Humphrey

    Justin Humphrey

    The Wormers

  • Travis Robertson

    Travis Robertson

    The Wormers

  • James Wilson Keane

    James Wilson Keane

    Boy with Basketball

  • Ric Reitz

    Ric Reitz

    Mr. Albertson

  • Kellen Crosby

    Kellen Crosby

    Kenny

  • Joey Stinson

    Joey Stinson

    Outfielder

  • James Paul Cleckler

    James Paul Cleckler

    Catcher

  • Tucker Stone

    Tucker Stone

    Young Morton

  • Jamison B. Dowd

    Jamison B. Dowd

    Bully

  • Beverly Shelton

    Beverly Shelton

    Eda

  • Geoff McKnight

    Geoff McKnight

    Tractor-Driver

  • T.S. Morgan

    T.S. Morgan

    Limo Driver

  • Carl Espy

    Carl Espy

    Dr. Morton Williams

  • Alice Tew

    Alice Tew

    Baby

  • Brendan Fraser

    Brendan Fraser

    Vietnam Veteran (uncredited)

  • Rand Courtney

    Rand Courtney

    Brett Jones (uncredited)

  • Brandon Kleyla

    Brandon Kleyla

    Bobby Fricker (uncredited)

  • Haviland Stillwell

    Haviland Stillwell

    Emily (uncredited)

  • Dave Thompson

    Dave Thompson

    Bud's News Photographer (uncredited)