diff options
Diffstat (limited to 'lib/phpFlickr/example.php')
-rw-r--r-- | lib/phpFlickr/example.php | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/phpFlickr/example.php b/lib/phpFlickr/example.php deleted file mode 100644 index 8b409b425..000000000 --- a/lib/phpFlickr/example.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php -/* Last updated with phpFlickr 1.3.2 - * - * This example file shows you how to call the 100 most recent public - * photos. It parses through them and prints out a link to each of them - * along with the owner's name. - * - * Most of the processing time in this file comes from the 100 calls to - * flickr.people.getInfo. Enabling caching will help a whole lot with - * this as there are many people who post multiple photos at once. - * - * Obviously, you'll want to replace the "<api key>" with one provided - * by Flickr: http://www.flickr.com/services/api/key.gne - */ - -require_once("phpFlickr.php"); -$f = new phpFlickr("<api key>"); - -$recent = $f->photos_getRecent(); - -foreach ($recent['photo'] as $photo) { - $owner = $f->people_getInfo($photo['owner']); - echo "<a href='http://www.flickr.com/photos/" . $photo['owner'] . "/" . $photo['id'] . "/'>"; - echo $photo['title']; - echo "</a> Owner: "; - echo "<a href='http://www.flickr.com/people/" . $photo['owner'] . "/'>"; - echo $owner['username']; - echo "</a><br>"; -} -?> |