Login   Register  
PHP Classes
elePHPant
Icontem

File: examples/example3.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Cesar D. Rodas  >  PHP Ajax  >  examples/example3.sql  >  Download  
File: examples/example3.sql
Role: Auxiliary data
Content type: text/plain
Description: SQL script for the example 3
Class: PHP Ajax
Manage AJAX applications with only PHP code
Author: By
Last change:
Date: 2007-12-19 20:29
Size: 224 bytes
 

Contents

Class file image Download
CREATE TABLE `chat` (
  `postid` int(11) NOT NULL auto_increment,
  `userid` varchar(32) NOT NULL,
  `postip` varchar(20)  NOT NULL,
  `postcontent` varchar(250)  NOT NULL,
  PRIMARY KEY  (`postid`)
) ENGINE=MEMORY ;