CREATE TABLE `blogs` (
`id` int(11) default NULL,
`title` varchar(64) default NULL,
`url` varchar(255) default NULL,
`location` varchar(64) default NULL,
`country` varchar(64) default NULL,
`lastupdate` varchar(20) default NULL,
`subscribe` longtext,
`added` varchar(20) default NULL,
`language` varchar(64) default NULL,
`description` varchar(255) default NULL,
`keywords` longtext
) TYPE=MyISAM;
INSERT INTO `blogs` VALUES ('1', 'spilth.org', 'http://www.spilth.org/', null, ' United States', ' 03 Nov 2005, 05:21', null, ' 25 Oct 2002, 20:10', ' English', ' Personal web site of Brian Kelly. Posts, pictures and pages about Music, Computers, Computer Games, Boards Games, RPGs and other such things.', ' songs, music, blog, computers, rpgs, pictures, new york, bob');
INSERT INTO `blogs` VALUES ('2', 'Feeling Listless', 'http://feelinglistless.blogspot.com/', 'Near Liverpool, UK<br>', ' United Kingdom', ' 03 Apr 2006, 01:18', null, ' 31 Oct 2002, 00:06', ' English', ' cultural review from the clueless', ' music, film, television, literature, art, fun, geography');
INSERT INTO `blogs` VALUES ('3', 'Santa Maradona', 'http://www.santamaradona.org/', null, ' Colombia', ' 08 Apr 2006, 00:42', ' http://www.santamaradona.org/index.xml (rss)<br>', ' 03 Nov 2002, 23:49', ' English', ' Una bitácora de puro fútbol, de esto y de aquello', ' futbol, noticias');
|