Login   Register  
PHP Classes
elePHPant
Icontem

File: login.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Peter  >  MySQL Login  >  login.sql  >  Download  
File: login.sql
Role: Auxiliary data
Content type: text/plain
Description: Configuration
Class: MySQL Login
Authenticate users with records in a MySQL table
Author: By
Last change:
Date: 2005-10-27 13:23
Size: 576 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump
-- version 2.6.4-pl1
-- http://www.phpmyadmin.net
-- 
-- Host: localhost
-- Generation Time: Oct 27, 2005 at 09:46 PM
-- Server version: 4.1.14
-- PHP Version: 5.0.5
-- 
-- Database: `0ldsk00l`
-- 

-- --------------------------------------------------------

-- 
-- Table structure for table `login`
-- 

CREATE TABLE `login` (
  `id` int(11) NOT NULL auto_increment,
  `username` text NOT NULL,
  `password` text NOT NULL,
  `email` text NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;