#ShortLink Base Class This is a simple base class for building short links like the ones generated by bitly.com.
##Usage
- Import the SQL dump to your MySQL database
- Instantiate the class with your MySQL options
##Example Instantiate
$shortlink = new ShortLink('host', 'user', 'pass', 'db');
Create short link
$shortlink->createShortLink('http://madsobel.com');
Get short link
$shortlink->getShortLink('LylYm');