PHP Classes

File: database/tbl_user.sql

Recommend this page to a friend!
  Classes of Gjero Krsteski   Building an Identity Map in PHP   database/tbl_user.sql   Download  
File: database/tbl_user.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Building an Identity Map in PHP
Retrieve objects avoiding multiple instances
Author: By
Last change: Update of database/tbl_user.sql
Date: 3 months ago
Size: 201 bytes
 

Contents

Class file image Download
CREATE TABLE IF NOT EXISTS tbl_user ( id INT NOT NULL AUTO_INCREMENT, nickname VARCHAR(30) NOT NULL, password VARCHAR(30) NOT NULL, PRIMARY KEY (id) ) TYPE=INNODB DEFAULT CHARSET=utf8;