<?php
include 'flickr_api.inc';
include 
'secrets.inc';
$flickr = new Flickr($secrets);
$photos $flickr->peopleGetPublicPhotos('56053642@N00',null,50);
foreach(
$photos['photos'] as $photo) {
    
$url $flickr->getPhotoURL($photo);
    echo 
'<img src="'.$url.'" height="75" width="75" />';
}
?>