Posts Tagged ‘gravatar’

Gravatars using CodeIgniter

Posted in Snippets Ideas on May 28th, 2010 by admin – Be the first to comment

If you want to display avatar images in your CodeIgniter application, you can use this Gravatar helper that contains a simple function to retrieve the Gravatar image source for a given email.

The Gravatar helper was created by Dave_C as mentioned in Codeigniter Forums.

By using this helper you can easily integrate your application with Gravatars like this:

codeigniter-gravatars

How to use the helper?

Follow the installation steps described here, and then just load the helper as usual and put this code in your view page passing the desired email as first parameter.

<?php echo gravatar( "you@domain.com" ); ?>

Related searches:

  • gravatar codeigniter