Skip to content

Instantly share code, notes, and snippets.

@unnikked
Created March 31, 2015 16:00
Show Gist options
  • Save unnikked/9c1c2fec57d219564208 to your computer and use it in GitHub Desktop.
Save unnikked/9c1c2fec57d219564208 to your computer and use it in GitHub Desktop.
Show gravatar from user email
<?php
/******************
*@email - Email address to show gravatar for
*@size - size of gravatar
*@default - URL of default gravatar to use
*@rating - rating of Gravatar(G, PG, R, X)
*/
function show_gravatar($email, $size, $default, $rating)
{
echo '<img src="http://www.gravatar.com/avatar.php?gravatar_id='.md5($email).
'&default='.$default.'&size='.$size.'&rating='.$rating.'" width="'.$size.'px"
height="'.$size.'px" />';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment