Share Pastebin
Guest
Public paste!

Eduardo de Bastiani

By: a guest | May 30th, 2009 | Syntax: PHP | Size: 0.26 KB | Hits: 147 | Expires: Never
Copy text to clipboard
  1. <?
  2.  
  3. //Address to compress
  4. $url = urlencode("http://www.argohost.net/");
  5.  
  6. //Call the file to compress URL API
  7. $url=@file_get_contents("http://uiop.me/api/newlink.php?u=".$url);
  8.  
  9. if($url){echo "URL created successfully: ".$url;}
  10. else{echo "Process failed";}
  11.  
  12. ?>