|
You can manually do the queries into the database
CREATE TABLE cp_stats (id int(2) NOT NULL auto_increment, amt_sold float(12,2) NOT NULL default '0', ads_sold int(12) NOT NULL default '0', lastupdate INT(12) NOT NULL default '0', PRIMARY KEY (id) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO cp_stats VALUES (1, 0, 0, 0);
|