-
Notifications
You must be signed in to change notification settings - Fork 0
/
logando.php
52 lines (48 loc) · 1.92 KB
/
logando.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
require 'static/php/system/database.php';
require 'static/php/system/config.php';
mysql_connect('localhost', 'root','')or die(); //Conecta com o MySQL
mysql_select_db('nekohappy'); //Seleciona banco de dados
$login=$_POST['login']; //Pegando dados passados por AJAX
$senha=$_POST['senha'];
$ip=mysql_real_escape_string($_SERVER['REMOTE_ADDR']);
//Consulta no banco de dados
$sql="select * from neko_user where email='".$login."' and senha='".sha1($senha)."'";
$resultados = mysql_query($sql)or die (mysql_error());
$res=mysql_fetch_array($resultados); //
if (@mysql_num_rows($resultados) == 0){
echo 0; //Se a consulta não retornar nada é porque as credenciais estão erradas
}
else{
$user = DBRead('user', "WHERE email = '{$login}' LIMIT 1 ");
$user = $user[0];
if($user['ip'] <> $ip){
echo 2;
$busca = "SELECT id FROM neko_user WHERE email = '".$login."'";
$identificacao = mysql_query($busca);
$retorno = mysql_fetch_array($identificacao);
$iduser = $retorno['id'];
setcookie("iduser", $iduser);
}
else{
echo 1; //Responde sucesso
$inisession = date('Y-m-d H:i:s');
$busca = "SELECT id FROM neko_user WHERE email = '".$login."'";
$identificacao = mysql_query($busca);
$retorno = mysql_fetch_array($identificacao);
$iduser = $retorno['id'];
$userUP['lastlogin'] = date('Y-m-d H:i:s');
setcookie("iduser", $iduser, time()+3600 * 24 * 365);
setcookie("inisession", $inisession, time()+3600 * 24 * 365);
$busca2 = "SELECT idcry FROM neko_user WHERE email = '".$login."'";
$identificacao2 = mysql_query($busca2);
$retorno2 = mysql_fetch_array($identificacao2);
$idcry = $retorno2['idcry'];
setcookie("thecry", $idcry, time()+3600 * 24 * 365);
if( DBUpdate( 'user', $userUP, "id = '{$iduser}'" ) ){
echo '';
}
exit;
}
}
?>