CREATE TABLE `games` (
`idnum` int(10) unsigned NOT NULL auto_increment,
`link` text NOT NULL,
`name` text NOT NULL,
`info` text NOT NULL,
PRIMARY KEY (`idnum`)
) TYPE=MyISAM;
INSERT INTO `games` VALUES (1, 'http://www.bonus.com/', 'Bonus.com: The Super Site for Kids', 'http://www.bonus.com/n Brain games, multiplayers, mazes, puzzles, arcade games, and other online activities.n ');
INSERT INTO `games` VALUES (2, 'http://www.mamamedia.com/', 'MaMaMedia.com', 'http://www.mamamedia.com/n Create cartoons, play games, make wacky creatures, paint digital pictures, design and send animated cards.n ');
INSERT INTO `games` VALUES (3, 'http://www.kidsdomain.com/games/index.html', 'Kid''s Domain Online Games', 'http://www.kidsdomain.com/games/index.htmln All kinds of online games for kids. Some work with any browser, some use Java, Shockwave, Cocoa, or Roadster. Everything from arcade games and puzzlers to multiplayer games.n ');
|