PHP Classes

File: sql/registration-module.sql

Recommend this page to a friend!
  Classes of Ankit Jain   Registration Module   sql/registration-module.sql   Download  
File: sql/registration-module.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Registration Module
Register and login users in MySQL database records
Author: By
Last change:
Date: 6 years ago
Size: 1,129 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump -- version 4.5.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Dec 31, 2016 at 05:24 PM -- Server version: 10.1.8-MariaDB -- PHP Version: 5.6.14 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `account` -- -- -------------------------------------------------------- -- -- Table structure for table `login` -- CREATE TABLE `login` ( `login_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `username` varchar(255) NOT NULL, `mobile` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Table structure for table `register` -- CREATE TABLE `register` ( `id` int(11) NOT NULL auto_increment primary key, `email` varchar(255) NOT NULL, `username` varchar(255) NOT NULL, `password` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1;