tags:

views:

4

answers:

1

Is there a way with PHP to get the Avatar from the Gravatar website?

A: 
$hashemail = md5( strtolower( trim( "[email protected] " ) ) );
<img src="http://www.gravatar.com/avatar/&lt;?php echo $hashemail; ?>.jpg" />
Jason