De barro y oro

Cast (21)

  • Juanito Valderrama

    Juanito Valderrama

    Juan (as Juan Valderrama)

  • Manuel San Francisco

    Manuel San Francisco

    Manuel

  • Adriano Domínguez

    Adriano Domínguez

    Antonio

  • Luis Ferrín

    Luis Ferrín

    Josele

  • Félix Dafauce

    Félix Dafauce

    Don Fernando

  • Alejandra Nilo

    Alejandra Nilo

    Carmen

  • Pilar Gómez Ferrer

    Pilar Gómez Ferrer

    Nati

  • Juan Beringola

    Juan Beringola

  • Paco Serrano

    Paco Serrano

  • John M. Gaskins

    John M. Gaskins

  • John Collins

    John Collins

  • Juan José Gutiérrez

    Juan José Gutiérrez

  • Jorge Llopis

    Jorge Llopis

  • Rafael Hernández

    Rafael Hernández

    Mozo de espadas

  • Nora Romo

    Nora Romo

  • José Villasante

    José Villasante

  • Yelena Samarina

    Yelena Samarina

    Señora rica

  • Dolores Caballero Abril

    Dolores Caballero Abril

    Lola

  • Manuel Benítez el Cordobés

    Manuel Benítez el Cordobés

    Self (archive footage)

  • Manolete

    Manolete

    Self (archive footage)

  • María Luisa San José

    María Luisa San José

    Criada (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'; ?>
De barro y oro

Cast (21)

  • Juanito Valderrama

    Juanito Valderrama

    Juan (as Juan Valderrama)

  • Manuel San Francisco

    Manuel San Francisco

    Manuel

  • Adriano Domínguez

    Adriano Domínguez

    Antonio

  • Luis Ferrín

    Luis Ferrín

    Josele

  • Félix Dafauce

    Félix Dafauce

    Don Fernando

  • Alejandra Nilo

    Alejandra Nilo

    Carmen

  • Pilar Gómez Ferrer

    Pilar Gómez Ferrer

    Nati

  • Juan Beringola

    Juan Beringola

  • Paco Serrano

    Paco Serrano

  • John M. Gaskins

    John M. Gaskins

  • John Collins

    John Collins

  • Juan José Gutiérrez

    Juan José Gutiérrez

  • Jorge Llopis

    Jorge Llopis

  • Rafael Hernández

    Rafael Hernández

    Mozo de espadas

  • Nora Romo

    Nora Romo

  • José Villasante

    José Villasante

  • Yelena Samarina

    Yelena Samarina

    Señora rica

  • Dolores Caballero Abril

    Dolores Caballero Abril

    Lola

  • Manuel Benítez el Cordobés

    Manuel Benítez el Cordobés

    Self (archive footage)

  • Manolete

    Manolete

    Self (archive footage)

  • María Luisa San José

    María Luisa San José

    Criada (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'; ?>
De barro y oro

Cast (21)

  • Juanito Valderrama

    Juanito Valderrama

    Juan (as Juan Valderrama)

  • Manuel San Francisco

    Manuel San Francisco

    Manuel

  • Adriano Domínguez

    Adriano Domínguez

    Antonio

  • Luis Ferrín

    Luis Ferrín

    Josele

  • Félix Dafauce

    Félix Dafauce

    Don Fernando

  • Alejandra Nilo

    Alejandra Nilo

    Carmen

  • Pilar Gómez Ferrer

    Pilar Gómez Ferrer

    Nati

  • Juan Beringola

    Juan Beringola

  • Paco Serrano

    Paco Serrano

  • John M. Gaskins

    John M. Gaskins

  • John Collins

    John Collins

  • Juan José Gutiérrez

    Juan José Gutiérrez

  • Jorge Llopis

    Jorge Llopis

  • Rafael Hernández

    Rafael Hernández

    Mozo de espadas

  • Nora Romo

    Nora Romo

  • José Villasante

    José Villasante

  • Yelena Samarina

    Yelena Samarina

    Señora rica

  • Dolores Caballero Abril

    Dolores Caballero Abril

    Lola

  • Manuel Benítez el Cordobés

    Manuel Benítez el Cordobés

    Self (archive footage)

  • Manolete

    Manolete

    Self (archive footage)

  • María Luisa San José

    María Luisa San José

    Criada (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'; ?>
De barro y oro

Cast (21)

  • Juanito Valderrama

    Juanito Valderrama

    Juan (as Juan Valderrama)

  • Manuel San Francisco

    Manuel San Francisco

    Manuel

  • Adriano Domínguez

    Adriano Domínguez

    Antonio

  • Luis Ferrín

    Luis Ferrín

    Josele

  • Félix Dafauce

    Félix Dafauce

    Don Fernando

  • Alejandra Nilo

    Alejandra Nilo

    Carmen

  • Pilar Gómez Ferrer

    Pilar Gómez Ferrer

    Nati

  • Juan Beringola

    Juan Beringola

  • Paco Serrano

    Paco Serrano

  • John M. Gaskins

    John M. Gaskins

  • John Collins

    John Collins

  • Juan José Gutiérrez

    Juan José Gutiérrez

  • Jorge Llopis

    Jorge Llopis

  • Rafael Hernández

    Rafael Hernández

    Mozo de espadas

  • Nora Romo

    Nora Romo

  • José Villasante

    José Villasante

  • Yelena Samarina

    Yelena Samarina

    Señora rica

  • Dolores Caballero Abril

    Dolores Caballero Abril

    Lola

  • Manuel Benítez el Cordobés

    Manuel Benítez el Cordobés

    Self (archive footage)

  • Manolete

    Manolete

    Self (archive footage)

  • María Luisa San José

    María Luisa San José

    Criada (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'; ?>
De barro y oro

Cast (21)

  • Juanito Valderrama

    Juanito Valderrama

    Juan (as Juan Valderrama)

  • Manuel San Francisco

    Manuel San Francisco

    Manuel

  • Adriano Domínguez

    Adriano Domínguez

    Antonio

  • Luis Ferrín

    Luis Ferrín

    Josele

  • Félix Dafauce

    Félix Dafauce

    Don Fernando

  • Alejandra Nilo

    Alejandra Nilo

    Carmen

  • Pilar Gómez Ferrer

    Pilar Gómez Ferrer

    Nati

  • Juan Beringola

    Juan Beringola

  • Paco Serrano

    Paco Serrano

  • John M. Gaskins

    John M. Gaskins

  • John Collins

    John Collins

  • Juan José Gutiérrez

    Juan José Gutiérrez

  • Jorge Llopis

    Jorge Llopis

  • Rafael Hernández

    Rafael Hernández

    Mozo de espadas

  • Nora Romo

    Nora Romo

  • José Villasante

    José Villasante

  • Yelena Samarina

    Yelena Samarina

    Señora rica

  • Dolores Caballero Abril

    Dolores Caballero Abril

    Lola

  • Manuel Benítez el Cordobés

    Manuel Benítez el Cordobés

    Self (archive footage)

  • Manolete

    Manolete

    Self (archive footage)

  • María Luisa San José

    María Luisa San José

    Criada (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'; ?>
De barro y oro

Cast (21)

  • Juanito Valderrama

    Juanito Valderrama

    Juan (as Juan Valderrama)

  • Manuel San Francisco

    Manuel San Francisco

    Manuel

  • Adriano Domínguez

    Adriano Domínguez

    Antonio

  • Luis Ferrín

    Luis Ferrín

    Josele

  • Félix Dafauce

    Félix Dafauce

    Don Fernando

  • Alejandra Nilo

    Alejandra Nilo

    Carmen

  • Pilar Gómez Ferrer

    Pilar Gómez Ferrer

    Nati

  • Juan Beringola

    Juan Beringola

  • Paco Serrano

    Paco Serrano

  • John M. Gaskins

    John M. Gaskins

  • John Collins

    John Collins

  • Juan José Gutiérrez

    Juan José Gutiérrez

  • Jorge Llopis

    Jorge Llopis

  • Rafael Hernández

    Rafael Hernández

    Mozo de espadas

  • Nora Romo

    Nora Romo

  • José Villasante

    José Villasante

  • Yelena Samarina

    Yelena Samarina

    Señora rica

  • Dolores Caballero Abril

    Dolores Caballero Abril

    Lola

  • Manuel Benítez el Cordobés

    Manuel Benítez el Cordobés

    Self (archive footage)

  • Manolete

    Manolete

    Self (archive footage)

  • María Luisa San José

    María Luisa San José

    Criada (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'; ?>
De barro y oro

Cast (21)

  • Juanito Valderrama

    Juanito Valderrama

    Juan (as Juan Valderrama)

  • Manuel San Francisco

    Manuel San Francisco

    Manuel

  • Adriano Domínguez

    Adriano Domínguez

    Antonio

  • Luis Ferrín

    Luis Ferrín

    Josele

  • Félix Dafauce

    Félix Dafauce

    Don Fernando

  • Alejandra Nilo

    Alejandra Nilo

    Carmen

  • Pilar Gómez Ferrer

    Pilar Gómez Ferrer

    Nati

  • Juan Beringola

    Juan Beringola

  • Paco Serrano

    Paco Serrano

  • John M. Gaskins

    John M. Gaskins

  • John Collins

    John Collins

  • Juan José Gutiérrez

    Juan José Gutiérrez

  • Jorge Llopis

    Jorge Llopis

  • Rafael Hernández

    Rafael Hernández

    Mozo de espadas

  • Nora Romo

    Nora Romo

  • José Villasante

    José Villasante

  • Yelena Samarina

    Yelena Samarina

    Señora rica

  • Dolores Caballero Abril

    Dolores Caballero Abril

    Lola

  • Manuel Benítez el Cordobés

    Manuel Benítez el Cordobés

    Self (archive footage)

  • Manolete

    Manolete

    Self (archive footage)

  • María Luisa San José

    María Luisa San José

    Criada (uncredited)