Samples for 12000 Articles Database
Table Structure:
CREATE TABLE articles ( id int(11) NOT NULL auto_increment, title varchar(255) NOT NULL default '', autor varchar(64) NOT NULL default '', text text NOT NULL, category smallint(6) default NULL, PRIMARY KEY (id) ) TYPE=MyISAM;
Samples:
CREATE TABLE articles ( id int(11) NOT NULL auto_increment, title varchar(255) NOT NULL default '', autor varchar(64) NOT NULL default '', text text NOT NULL, category smallint(6) default NULL, PRIMARY KEY (id) ) TYPE=MyISAM;
Samples:



