I need to figure out how to configure code that will pull 50 objects from an online digital collection. The API Documentation is here http://digital.library.unlv.edu/api/1/. The page that will call on this gallery is NOT on the same server. It outputs XML and JSON. I don’t care which one as long as it works and I then have to format it into an HTML table with thumbnail image and title. I got so far as using something like this to spit out info
<?php $url = "http://digital.library.unlv.edu/api/1/collections.xml"; $response = file_get_contents($url); echo $response; ?>but haven’t gotten further and this is time sensitive!!!