PHP Classes

File: test.sql

Recommend this page to a friend!
  Classes of António Lourenço   Lou GenPass   test.sql   Download  
File: test.sql
Role: Auxiliary data
Content type: text/plain
Description: MySQL queries to install
Class: Lou GenPass
Generate a random password and a hash
Author: By
Last change: fixed error
Date: 9 years ago
Size: 1,268 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump -- version 4.1.7 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: 06-Abr-2014 às 15:07 -- Versão do servidor: 5.6.16 -- PHP Version: 5.3.28 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 utf8 */; -- -- Database: `test` -- -- -------------------------------------------------------- -- -- Estrutura da tabela `genpass` -- CREATE TABLE IF NOT EXISTS `genpass` ( `nr` int(5) NOT NULL AUTO_INCREMENT, `password` varchar(12) NOT NULL, `uid` char(72) NOT NULL, PRIMARY KEY (`nr`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; -- -- Extraindo dados da tabela `genpass` -- INSERT INTO `genpass` (`nr`, `password`, `uid`) VALUES (1, '76VYraNXePv9', '9805b76f81a6caab2c13baf5a0a81a0dbead689b5024ebfa7834079fcf64c72b3c543c17'); /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;