Like This Site? 
 
RSS Feed Follow Us 

on Twitter! Be Our Fan!

Creating PHP Refferal System

Share this post!
 Vote this!

We start off with the database structure:


CREATE TABLE `referral` (
`id` int(11) NOT NULL auto_increment,
`URL` varchar(255) NOT NULL default '',
`hits` varchar(255) NOT NULL default '',

PRIMARY KEY (`id`)
) TYPE=MyISAM;  more...

0 comments:

Post a Comment