Start off by creating a new MySQL Database, and execute this query in it. CREATE TABLE `urls` ( `url_id` int(16) NOT NULL auto_increment, `url_location` tinytext NOT NULL, `url_tag` tinytext NOT NULL, PRIMARY KEY (`url_id`) ); Now open index.php, and fill in the MySQL values, it's pretty simple. All done!