diff options
author | Alex Vitkov <alexvitkov98@gmail.com> | 2021-01-29 14:01:41 +0200 |
---|---|---|
committer | Alex Vitkov <alexvitkov98@gmail.com> | 2021-01-29 14:01:41 +0200 |
commit | f4d5d71da4f94bf9bc87505e745eed913c9858b9 (patch) | |
tree | c5c2e7505c74d4bb500675cc57fdf9b1cf554e34 /php/login.php | |
parent | fdea65e03218d175bcc5d5f2bbb426688a6cf42e (diff) | |
download | fileup-f4d5d71da4f94bf9bc87505e745eed913c9858b9.tar.gz |
Login is now remembered in $_SESSION['username']
If it is set, user is logged in, if it is unset
user is not logged in
Diffstat (limited to 'php/login.php')
-rw-r--r-- | php/login.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/php/login.php b/php/login.php index e6d44dc..536a5bf 100644 --- a/php/login.php +++ b/php/login.php @@ -3,6 +3,8 @@ require_once "user.php"; require_once "database.php"; require_once "misc.php"; +session_start(); + $username=$_POST["username"]; $password=$_POST["password"]; /*server side verification*/ @@ -18,8 +20,7 @@ if(!$user) die("Password or username is incorrect"); } -echo "Username: {$user->username}\n"; -echo "Email: {$user->email_address}"; - +$_SESSION['username'] = $user->username; +header('Location: /'); ?> |