Reputation: 2727
Is there a way with PHP to get the Avatar from the Gravatar website?
Upvotes: 0
Views: 275
Reputation: 2727
$hashemail = md5( strtolower( trim( "[email protected] " ) ) );
<img src="http://www.gravatar.com/avatar/<?php echo $hashemail; ?>.jpg" />
Upvotes: 1