Skip to content

Instantly share code, notes, and snippets.

@sdeluce
Last active January 4, 2016 01:29
Show Gist options
  • Select an option

  • Save sdeluce/8548334 to your computer and use it in GitHub Desktop.

Select an option

Save sdeluce/8548334 to your computer and use it in GitHub Desktop.
Utiliser Gravatar
<?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