http://www.echievements.com/fab.php?hop=xxxxxxx
fab.php:
look up what url value is connected to the key 'xxxxxxx' - id suggest to do so in a db table:
urltable
id url hits
-------------------------------------------------
xxxxxxx http://www.echievements.com 15
increment the 'hits' value for the row 'xxxxxxx' + 1, then
//$row[url] got the value 'http://www.echievements.com' from the database
header("Location:" . $row[url]);