-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.php
43 lines (38 loc) · 873 Bytes
/
login.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
<?php
//Actiunea efectiva de login
include 'db/connections.php';
include 'header/init.php';
if (isset($_GET) && !empty($_GET))
{
$username = $_GET['username'];
$password = $_GET['password'];
$login = log_in($username,$password);
if ($login == false)
header ('Location: index.php?failure=1');
//put_error('Username and password do not match');
else
{
echo $login;
$_SESSION['user_id'] = $login;
header('Location: index.php');
exit();
}
}
else
if (isset($_POST) && !empty($_POST))
{
$username = $_POST['username'];
$password = $_POST['password'];
$login = log_in($username,$password);
if ($login == false)
header ('Location: index.php?failure=1');
//put_error('Username and password do not match');
else
{
echo $login;
$_SESSION['user_id'] = $login;
header('Location: index.php');
exit();
}
}
?>