a few words about web development

Using gravatars in your PHP applications is simple

Another straight to the point solution
Using gravatars in your PHP applications is simple. Here's a valid HTML code to generate gravatar for address admin7@de77.com:
<img src="http://www.gravatar.com/avatar/admin7@de77.com&s=40" alt="Gravatar">
Parameter s stands for size (in pixels).

Comments