Sunday, January 9, 2011

PHP: Nice URL shortener to use from PHP

In this post I would like to present you a nice URL shortening service that you may use from PHP in a very simple way (perhaps simplest possible!).
Let’s say you want to shorten url like this:
http://www.my-website-is-here.com/index.php?subpage
To do this you need this simple code:

$url = 'http://www.my-website-is-here.com/index.php?subpage';
$new_url = file_get_contents('http://is.gd/api.php?longurl=' . urlencode($url));

Now you can echo $new_url to see [...]

IT professional NOVELL Source: NETWORK APPLIANCE Enterprises IT NETGEAR Computer Hardware NCR

Source: http://de77.com/other/php-nice-url-shortener-to-use-from-php

No comments:

Post a Comment