Files
Legacy-Projects/Web-based/myGravatar.php
T
2014-11-24 18:18:24 +01:00

4 lines
143 B
PHP

<?php
header("HTTP/1.1 303 See Other");
@header("Location: http://www.gravatar.com/avatar/".md5(strtolower(trim($_REQUEST['email']))));
?>