NAME
CGI::Shorten - Creating your shortened links
SYNOPSIS
This module may help you to build a personal shortening-link service. Feeding the long, verbose, and tedious url, it can return you a shortened one. And it can also print out redirection header in you CGI script.
USAGE
use
CGI::Shorten;
new
You need to specify the prefix of databases to the constructor and may specify the url of the script that does the shortening task. The script's url defaults to 'http://127.0.0.1/shorten.pl'
Return the shortened url
$sh
->shorten(
$url
);
return the original url
$sh
->lengthen(
$url
);
return the CGI redirection header
$sh
->redirect(
$url
);
If the redirected url does not exist, it will return 404 Not Found.
COPYRIGHT
xern <xern@cpan.org>
This module is free software; you can redistribute it or modify it under the same terms as Perl itself.