PHP Classes

File: Lou_login.php

Recommend this page to a friend!
  Classes of António Lourenço   Lou Login   Lou_login.php   Download  
File: Lou_login.php
Role: Example script
Content type: text/plain
Description: An example for Lou_login.class
Class: Lou Login
Authenticate users stored in a MySQL database
Author: By
Last change:
Date: 9 years ago
Size: 784 bytes
 

Contents

Class file image Download
<?php

/*
 * Lou_Auth_login file
 * @author António Lourenço (Antlou) <aftlourenco@gmail.com>
 * version 1.0
 * 19/09/2014
 */
   
require_once ("Lou_login.class.php");
   
if(!empty(
$_POST)){
   
$mail = $_POST['mail'];
   
$senha = $_POST['senha'];

   
$endereco = new Lou_Auth_User($mail, $senha);
   
var_dump($endereco->isAuthUser());
   
 }else{
 
?>
<h1>CONTROL DE ACESSO / LOGIN</h1>
        <form action="#" method="POST">
            <label>Endereco electronico / Email</label>
            <input type="text" name="mail" maxlength="50">
            <br>
            <label>Senha / Password</label>
            <input type="text" name="senha" maxlength="50">
            <br>
            <input type="submit" name="registo" value="CONFIRMO / OK">
        </form>
        <a href="Lou_registo.php">Registe-se aqui / Sign up</a>
<?php
 
}
?>