예제 #1
0
<?php

//Login lib archive
//Created by: Joao Escudero <*****@*****.**>
//Git: http://github.com/joaovescudero/Projeto
require_once "classes/char.class.php";
$login = $_POST['login'];
$pass = $_POST['pass'];
$main = new main($mysql);
echo $main->login($login, $pass);
예제 #2
0
파일: check.php 프로젝트: sanishkr/gamify
<?php

include 'functions.php';
$function = new main();
if (isset($_POST["login"])) {
    $a[1] = $_POST["name"];
    $a[2] = $_POST["pass"];
    if ($a[1] != "" && $a[2] != "") {
        $function->login($a[1], $a[2]);
        $fun = $_SESSION["name"];
        if ($_SESSION["name"]) {
            echo '<script>window.location="indes.php";</script>';
        } else {
            echo '<script>alert("not sec");</script>';
        }
    } else {
        echo '<script>alert("please fill all the details");</script>';
    }
}
if (isset($_POST["reg"])) {
    $a[1] = $_POST["name"];
    $a[] = $_POST["pass"];
    if ($a[1] != "" && $a[2] != "") {
        if ($function->register($a[1], $a[2]) > 0) {
            echo '<script>alert("name already exist");</script>';
        } else {
            echo '<script>alert("register sucessfully");</script>';
        }
    } else {
        echo '<script>alert("please fill all the details");</script>';
    }
예제 #3
0
파일: html.php 프로젝트: Hantet/BugTracker
 public function authorization($login, $pass)
 {
     $main = new main();
     if ($main->login($login, $pass)) {
         return true;
     }
     return false;
 }