If you want to use somewhere the number of people who likes your fan page, here’s the way to do that: Create Create a new […]
Tag: PHP
Quick short URL PHP function
function shortURL($long) { $short=file_get_contents(“http://is.gd/api.php?longurl=”.$long); return $short; } Usage: $short = shortURL(“http://veryveryveryverylongurl.tld/something/verylong.php”); echo $short;