PHP Classes

File: login/index.php

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

Contents

Class file image Download
<?php
require_once "login.php";
$login = new Login("[email protected]","123456");
if(
$login){
    echo
"OK";
}else{
    echo
"ERROR";
}
?>