Login   Register  
PHP Classes
elePHPant
Icontem

File: readme.txt

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of oran  >  Login Script with PDO  >  readme.txt  >  Download  
File: readme.txt
Role: Documentation
Content type: text/plain
Description: sql query to open DB
Class: Login Script with PDO
Manage user accounts stored in a database with PDO
Author: By
Last change: email to 254
Date: 2009-09-02 10:09
Size: 594 bytes
 

Contents

Class file image Download
To install run sql line : 

CREATE TABLE IF NOT EXISTS `users` (
  `P_Id` int NOT NULL AUTO_INCREMENT,
 `username` varchar(200) collate utf8_unicode_ci NOT NULL,
  `password` varchar(200) collate utf8_unicode_ci NOT NULL,
  `email` varchar(254) collate utf8_unicode_ci NOT NULL,
  `regdate` varchar(200) collate utf8_unicode_ci NOT NULL,
  `CpassReqDate` varchar(200) collate utf8_unicode_ci NOT NULL,
   `voucher` varchar(200) collate utf8_unicode_ci NOT NULL,
   
  UNIQUE id (P_Id),
   UNIQUE username(username)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci