/ Published in: PHP
Is.Gd is a URL-shortening service much like TinyURL. Using PHP’s cURL library, you can create shortened URLs on the fly with ease. “is.gd†is much shorter than “tinyurl.com†so if you need the URL to be as short as possible, use this method.
Create tinyurl.com urls : http://snipplr.com/view/11601/create-tinyurl/
Create tinyurl.com urls : http://snipplr.com/view/11601/create-tinyurl/
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
//gets the data from a URL function get_isgd_url($url) { //get content $timeout = 5; //return the data return $content; } //uage $new_url = get_isgd_url('http://davidwalsh.name/php-imdb-information-grabber');
URL: http://davidwalsh.name/isgd-url-php