Login   Register  
PHP Classes
elePHPant
Icontem

File: ff_form.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Charles Siegrist  >  FF Form  >  ff_form.sql  >  Download  
File: ff_form.sql
Role: Auxiliary data
Content type: text/plain
Description: Sql file for sample data
Class: FF Form
Generate Web forms filling with data from MySQL
Author: By
Last change: Data changed
Date: 2004-06-16 12:00
Size: 1,197 bytes
 

Contents

Class file image Download
#
# 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');