PHP Classes

File: table_for_examples.sql

Recommend this page to a friend!
  Classes of Alex D.   Formslib4PHP   table_for_examples.sql   Download  
File: table_for_examples.sql
Role: Auxiliary script
Content type: text/plain
Description: SQL for examples
Class: Formslib4PHP
Generate and validate Web forms
Author: By
Last change:
Date: 17 years ago
Size: 394 bytes
 

Contents

Class file image Download
-- SQL for the test table
--
-- Table person
--

CREATE TABLE `person` (
  `id` int(11) unsigned NOT NULL auto_increment,
  `name` varchar(120) collate latin1_general_ci NOT NULL,
  `age` int(3) NOT NULL,
  `description` text collate latin1_general_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=3 ;