Login   Register  
PHP Classes
elePHPant
Icontem

File: users.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Luca Vignaroli  >  burnauth  >  users.sql  >  Download  
File: users.sql
Role: Example script
Content type: text/plain
Description: SQL query to create example DB for the script (MySql export)
Class: burnauth
Page access authentication
Author: By
Last change:
Date: 2002-09-25 18:08
Size: 741 bytes
 

Contents

Class file image Download
# phpMyAdmin MySQL-Dump
# version 2.3.0
# http://phpwizard.net/phpMyAdmin/
# http://www.phpmyadmin.net/ (download page)
#
# Host: heternity
# Generato il: 25 Set, 2002 at 07:05 PM
# Versione MySQL: 3.23.52
# Versione PHP: 4.2.2
# Database : `burning`
# --------------------------------------------------------

#
# Struttura della tabella `users`
#

CREATE TABLE users (
  ID int(11) NOT NULL auto_increment,
  USERNAME char(50) NOT NULL default '',
  PASSWORD char(50) NOT NULL default '',
  LASTTIMEHERE datetime NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY  (ID)
) TYPE=MyISAM;

#
# Dump dei dati per la tabella `users`
#

INSERT INTO users VALUES (1, 'admin', 'admin', '', '2002-09-25 18:18:49');