Example #1
0
 public static function CheckLogin($username, $password)
 {
     $database = new Database();
     $user = $database->CheckLogin($username, $password);
     return $user;
 }