Login   Register  
PHP Classes
elePHPant
Icontem

File: sql.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Alf-Red  >  Registration  >  sql.sql  >  Download  
File: sql.sql
Role: Auxiliary data
Content type: text/plain
Description: database creation file
Class: Registration
User registration with CAPTCHA image validation
Author: By
Last change:
Date: 2005-03-01 05:00
Size: 492 bytes
 

Contents

Class file image Download
# phpMyAdmin MySQL-Dump
# version 2.4.0
# http://www.phpmyadmin.net/ (download page)
#
# --------------------------------------------------------

#
# Table structure for table `registration`
#

CREATE TABLE registration (
  id_name int(11) NOT NULL auto_increment,
  user varchar(25) NOT NULL default '',
  pass varchar(25) NOT NULL default '',
  activ text NOT NULL,
  mail varchar(50) NOT NULL default '',
  activated int(11) NOT NULL default '0',
  PRIMARY KEY  (id_name)
) TYPE=MyISAM;