Create cookie-based login and authentication system

This commit is contained in:
Alex Cabal 2022-07-10 18:58:55 -05:00
parent 45221365b5
commit 0bc3dc3830
46 changed files with 528 additions and 195 deletions

View file

@ -73,6 +73,9 @@ class HttpInput{
case COOKIE:
$vars = $_COOKIE;
break;
case SESSION:
$vars = $_SESSION;
break;
}
if(isset($vars[$variable])){