diff options
author | adam <adam@> | 2021-02-13 12:13:13 +0200 |
---|---|---|
committer | adam <adam@> | 2021-02-13 12:13:13 +0200 |
commit | 232ec00948655b8c68035368400b0a79c101976b (patch) | |
tree | 23db4dd54cbfd84a98b0315712529c4de073f9b7 /php/login.php | |
parent | 508baff21febbd3676ce29d4d45e326d8a11cc4b (diff) | |
download | fileup-232ec00948655b8c68035368400b0a79c101976b.tar.gz |
removed usename from session
Diffstat (limited to 'php/login.php')
-rw-r--r-- | php/login.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/php/login.php b/php/login.php index c26445e..6fb3909 100644 --- a/php/login.php +++ b/php/login.php @@ -13,14 +13,12 @@ if(gettype($username)!="string" || gettype($password)!="string") die("You didn't specify the pass or the username"); } -$database=new Database(); $user=$database->authenticate($username,$password); if(!$user) { die("Password or username is incorrect"); } -$_SESSION['username'] = $user->username; $_SESSION['user_object'] = $user; header('Location: /'); |