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 Jeff Johnson  >  phpMyAuth  >  sql.sql  >  Download  
File: sql.sql
Role: Documentation
Content type: text/plain
Description: SQL Data
Class: phpMyAuth
A simple authentication class based on MySQL
Author: By
Last change:
Date: 2003-07-08 03:47
Size: 710 bytes
 

Contents

Class file image Download
############################################################33
# To use PMA:
# mysqladmin -uroot -p[password] CREATE pma;
# mysql -uroot -p pma < sql.sql
# Configure the vars in pma.class.inc.php
#
# Table structure for table `pma_users`
#
# Creation: Jul 03, 2003 at 07:36 PM
# Last update: Jul 03, 2003 at 07:36 PM
#
CREATE TABLE `pma_users` (
  `id` tinyint(4) NOT NULL auto_increment,
  `user` varchar(255) NOT NULL default '',
  `pass` varchar(255) NOT NULL default '',
  `email` varchar(255) NOT NULL default '',
  `aim` varchar(255) default NULL,
  `type` varchar(255) NOT NULL default '',
  `date` varchar(255) NOT NULL default '',
  KEY `id` (`id`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;