PHP Classes

File: login/index.php

Recommend this page to a friend!
  Classes of Hoheckell Filho   Login   login/index.php   Download  
File: login/index.php
Role: Example script
Content type: text/plain
Description: basic login
Class: Login
Authenticate users with MySQL database records
Author: By
Last change:
Date: 11 years ago
Size: 147 bytes
 

Contents

Class file image Download
<?php
require_once "login.php";
$login = new Login("hoheckell.info@gmail.com","123456");
if(
$login){
    echo
"OK";
}else{
    echo
"ERROR";
}
?>