Using phpFlickr, how would one display the primary photo from each photoset?
- by Michael
Referring to this question: http://stackoverflow.com/questions/2561475/flickr-phpflickr-api
how would you display a primary photo from a photoset rather than all photos and photosets?
this is the code I have so far:
photosets_getList($user);
?
<?php $photoset_id = $ph_set['id'];
$photos = $f->photosets_getPhotos($photoset_id);
…