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 /index.php | |
parent | 508baff21febbd3676ce29d4d45e326d8a11cc4b (diff) | |
download | fileup-232ec00948655b8c68035368400b0a79c101976b.tar.gz |
removed usename from session
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -1,4 +1,5 @@ <?php + require_once "php/user.php"; session_start(); ?> <!DOCTYPE html> @@ -20,9 +21,15 @@ <div style="flex: 1 0 0;"></div> <ul id="topmenu"> - <?php if (array_key_exists("username", $_SESSION)) { ?> + <?php if (array_key_exists("user_object", $_SESSION)) { ?> - <li><?php echo $_SESSION['username'];?></li> + <li> + <?php + $user=$_SESSION['user_object']; + error_log($user->username); + echo $user->username; + ?> + </li> <li onclick="window.location.href='/php/logout.php'">Sign out</li> <?php } else {?> @@ -38,7 +45,7 @@ <div id="page"> <?php - if (array_key_exists("username", $_SESSION)) { + if (array_key_exists("user_object", $_SESSION)) { require_once("loggedin.php"); } else { require_once("loginregister.php"); |