function url_shortener($url,$custom){
//url shortener from metiny.com
//this function can take any url and shorten it
$metiny_url="http://metiny.com/api.php?make_metiny=$url&user_custom=$custom";//metiny.com api url
$file = file_get_contents($metiny_url);
echo $file;}
url_shortener('PUT-YOUR-URL-HERE','CHANGE-ME-TO-YOUR-CUSTOM-NAME');//url shortener function //CUSTOM
?>
Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/NYODhinnIB4/13617