FlickrhelperFlickrhelper is a quick and easy to use php class that can be accessed by Ajax using jquery. This class will allow you to search by username and tags. Start using FlickrhelperUse jQuery's load function to bring the photos to the page. load( url, [data], [callback] ) Supported Options- username(Required) - provide the username of the account you would like to return photos from.
- tags(Optional) - A comma-delimited list of tags. Photos with one or more of the tags listed will be returned.
<script>
$('#MyDiv').load('flickrhelper/index.php',{username: 'myFlickrName', tags: 'boats, cars'});
</script>
<div id="MyDiv"></div>
|