Fetch the object from the website and put it into a variable
$get_imdb_api = file_get_contents("http://www.imdbapi.com/?t=something");It is JSON, so decode it
$get_imdb_api = json_decode($get_imdb_api);We want to put it in an array because, currently, its an object
$get_imdb_api = get_object_vars($get_imdb_api);If you need the year, add y=theyear
Hope this hopes and, like I said, I will be implementing this on my site