Exemplo n.º 1
0
    }
} else {
    if (isset($_GET['tab'])) {
        if (stristr($_GET['tab'], 'episodes')) {
            echo $template->episodeLists();
        }
    } else {
        echo $template->episodeLists();
    }
}
?>

<?php 
if (isset($_GET['tab'])) {
    if (stristr($_GET['tab'], 'photos')) {
        echo $imdb->createPhotos($movieArray['media_images'], $settings_data['info_photos']);
    }
}
?>

<?php 
if (isset($_GET['tab'])) {
    if (stristr($_GET['tab'], 'reviews')) {
        foreach ($imdb->getReviews($movieArray['title_id']) as $all_reviews) {
            echo $all_reviews . '<hr>';
        }
    }
}
?>

</div>