URL Shortener Site - What Script Is This?

cocabom

Registered Member
Joined
Jun 26, 2010
Messages
97
Reaction score
26
Can someone here share with me or tell what script this site use. I want to use this script to make my own URL shortener site..

Site: http://iluvurl.com/


Thanks for your help..
 
just a non-working exemple
PHP:
<?php
if(isset($_GET['id']))
{
$req = select in database where id = $GET['id'];
  if(mysql $req)
  {
   header("Location: $req['url']");
  }
}
?>
 
Here's a URL shortener script with a step-by-step how-to setup:

HTML:
http://briancray.com/2009/08/26/free-php-url-shortener-script/
 
If you're after a good URL shortner script to use as a base, then check out either shorty or yourls.

Code:
Shorty Beta:
http://get-shorty.com/shorty/

YOURLS:
http://yourls.org/
 
Very interesting. I plan to create a link extender just for fun/trolling. The domain would be important. Btw, what will your domain be?
 
Back
Top