IMDb doesnt take some details
-
Hi I have some problems with getting details from IMDb, I have this code
<?php $movie = get_post_custom_values("imdb"); $vote = get_imdb_movie($movie[0]); echo $vote["year"]; ?>
And it works very well, it displays the year of movie with specificed ID, but when I want to get Country, Actors, Writers, Director… it doesnt work
<?php $movie = get_post_custom_values("imdb"); $vote = get_imdb_movie($movie[0]); echo $vote["director"]; ?>
And one bonus question. Imdbrating works well, but a few days ago the rating has lost by the older posts. The new posts have it, older not.
- The topic ‘IMDb doesnt take some details’ is closed to new replies.