Jason
Jason

Reputation: 2727

How could you grab an avatar from Gravatar?

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

Upvotes: 0

Views: 275

Answers (1)

Jason
Jason

Reputation: 2727

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

Upvotes: 1

Related Questions