#
# Table structure for table `ff_form`
#
CREATE TABLE `ff_form` (
`fruit` varchar(30) NOT NULL default '',
`vegetables` varchar(30) NOT NULL default '',
`drinks` varchar(30) NOT NULL default '',
`countries` varchar(30) NOT NULL default '',
`names` varchar(30) NOT NULL default ''
) TYPE=MyISAM;
#
# Dumping data for table `ff_form`
#
INSERT INTO `ff_form` VALUES ('apple', 'tomato', 'coffee', 'England', 'Joan');
INSERT INTO `ff_form` VALUES ('banana', 'carrot', 'tea', 'Irland', 'John');
INSERT INTO `ff_form` VALUES ('cherry', 'leek', 'water', 'France', 'Maurice');
INSERT INTO `ff_form` VALUES ('pear', 'marrow', 'beer', 'Germany', 'Fritz');
INSERT INTO `ff_form` VALUES ('mango', 'spinache', 'wine', 'Switzerland', 'Margret');
INSERT INTO `ff_form` VALUES ('starfruit', 'onion', 'whisky', 'Italy', 'Gina');
INSERT INTO `ff_form` VALUES ('pineapple', 'eggfruit', 'Aquavit', 'Spain', 'Juan');
INSERT INTO `ff_form` VALUES ('gooseberry', 'mushroom', 'Coke', 'Canada', 'Clarice');
INSERT INTO `ff_form` VALUES ('kiwi', 'asparagus', 'tisane', 'New Zealand', 'Paul');
INSERT INTO `ff_form` VALUES ('peach', 'potato', 'hot chocolate', 'Australia', 'Jane');
|