sURLL is a simple PHP/MySQL app that works basically like tinyurl.com, allowing you to create shortcuts on your own server. ----------------------------------------------------------------------- To install: 1. Create a MySQL database and user. 2. Import the sURLL.sql file 3. Edit the configuration file includes/conf.php to suit your needs. 4. Set up mod_rewrite, if necessary pasting these two lines into .htaccess RewriteEngine On RewriteRule ^(.[1-9a-z]*)$ index.php?id=$1 [L]