Login   Register  
PHP Classes
elePHPant
Icontem

File: login/index.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2013-03-26 07:53
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";
}
?>