Games Table:
DROP TABLE IF EXISTS `games`;
CREATE TABLE `games` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`title` varchar(100) DEFAULT NULL,
`system` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=latin1;
INSERT INTO `games` VALUES ('1', 'Dantes Inferno', 'PS3');
INSERT INTO `games` VALUES ('2', 'Assassins Creed', 'PS3');
INSERT INTO `games` VALUES ('3', 'Dragon Age Origins', 'PS3');
Systems Table:
DROP TABLE IF EXISTS `systems`;
CREATE TABLE `systems` (
`id` int(3) NOT NULL AUTO_INCREMENT,
`sys` varchar(10) DEFAULT NULL,
`title` varchar(20) DEFAULT NULL,
`img` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;
INSERT INTO `systems` VALUES ('1', 'PS3', 'Playstation 3', 'ps3.jpg');
INSERT INTO `systems` VALUES ('2', 'Xbox360', 'Xbox 360', 'xbox360.jpg');
INSERT INTO `systems` VALUES ('3', 'PS2', 'Playstation 2', 'ps2.jpg');
sorry 😃 you are the best!!!