Skip to content

Instantly share code, notes, and snippets.

@ricardoalcocer
Created September 13, 2020 23:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ricardoalcocer/d3db9836c4d463dd4af322e962128a4b to your computer and use it in GitHub Desktop.
Save ricardoalcocer/d3db9836c4d463dd4af322e962128a4b to your computer and use it in GitHub Desktop.
Get gravatar from email
<?php
$userMail = 'kevinrose@gmail.com';
$imageWidth = '150'; //The image size
$imgUrl = 'http://www.gravatar.com/avatar/'.md5($userMail).'fs='.$imageWidth;
echo "<img src=\"$imgUrl\">";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment