September 29th in PHP Scripts by pbu .

How URL shortening scripts work?

I have been quite intrigued with the working of these URL shortner scripts and surprisingly most of them employ an ingenious solution to compress the URL to a shortened one.

http://example.com/fe45 ——-> http://corpocrat.com/blah/page.htm

The answer is base36 encoding. why base36? because it can contain 26 alphabets and 10 numbers in the output. This is surprisingly simple way of encoding a URL.

Base 36 is nothing but, you keep on dividing a number by 36, collect its reminders (or modulo) and map them to the corresponding table of alphabets and numbers. see base 36 table.

This is how most URL shortner scripts work…

1. First Insert a long URL into the database. Get the id of row which should be a primary key and unique. In most cases it can also be auto increment.

URLs are stored in database with unique id.


-----------------------------------------------
ID URL
-----------------------------------------------
10099 http://corpocrat.com/
14566 http://corpocrat.com/blah/page.htm

2. Now get the corresponding ID to that URL stored in database. Since the ID it can contain only numbers 0-9 (base 10), convert to base 36 using php function base_convert from 10 to 36

<?php
    $id = "10099";
    echo base_convert($id,10,36);
?>

Output:

1099 ——-> uj
10099 ——> 7sj
100099 —–> 258j

As you see the output produced by base36, smaller numbers output fewer characters and for even millionth number, we generate just 4 characters in length in the form of mixed alphabets and numbers.

base361.PNG

3. Store that base36 output in the database, respective to that of ID in a separate field. so the trimmed version of URL becomes….

http://example.com/7sj

for the URL http://corpocrat.com with ID 10099 stored in the database.

The above http://example.com/7sj is a mod-write for the php page

http://example.com/7sj -----> http://example.com/short.php?baseid=7sj

which queries the database based for destination URL against base38 stored and then redirects.

The above is a very simple technique and besides this there are many more techniques for URL shortening, for which i recommend the below referenced resources.

Enjoy!

Useful References

* URL compression for huge set of URLs in GB sizes – http://anres.cpe.ku.ac.th….ncsec.pdf
* URL shortening hashes – http://www.codinghorror.com/blog/archives/000935.html

Note:
Base 64 can also give wide range of characters in url shortening.

Pass your 70-290 exam with testking guaranteed, plus also download practice questions for 70-291 as well as 70-431 exams.

Similar Posts:

Share and Enjoy:
  • del.icio.us
  • digg
  • StumbleUpon
  • Technorati
  • DZone
  • Facebook
  • FriendFeed
  • Reddit
  • RSS
  • Twitter

9 Comments

  • Steve Robillard
    October 2, 2009
  • avanzaweb
    October 15, 2009
  • Abhinav Singh
    October 16, 2009
  • Oliver Ruehl
    November 10, 2009
  • srisoftwarez
    November 20, 2009
  • Keyur Patel
    February 22, 2010
  • Wesam Alalem
    March 16, 2010
  • Dennison Uy
    April 23, 2010
    • Desert69
      June 22, 2010

Leave A Comment.