Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
PHP gravatar integration
SUBMITTED BY:
Guest
DATE:
Oct. 23, 2013, 9:11 a.m.
FORMAT:
PHP
SIZE:
343 Bytes
Raw
Download
Tweet
HITS:
1016
Go to comments
Report
<?php
function
show_my_gravatar
(
$email
,
$size
,
$default
,
$rating
)
{
$params
=
'?gravatar_id='
.
md5
(
$email
)
.
'&default='
.
$default
.
'&size='
.
$size
.
'&rating='
.
$rating
;
$output
=
'<img src="http://www.gravatar.com/avatar.php'
.
$params
.
'" width="'
.
$size
.
'px" height="'
.
$size
.
'px" />'
;
echo
$output
;
}
?>
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus