diff options
Diffstat (limited to 'include/login.php')
-rw-r--r-- | include/login.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/include/login.php b/include/login.php index 346c71e..ea8d8ef 100644 --- a/include/login.php +++ b/include/login.php @@ -1,13 +1,14 @@ <?php -/* make sure that we are not called from outside the scripts, +/* make sure that we are not called from outside the scripts, * use a variable defined in config.php to check this */ if(!isset($HOST)) exit; +/* check if login information is present */ if(!myisset("email","password")) { - "can't log you in"; + echo "can't log you in... missing login information."; } else { @@ -17,15 +18,15 @@ else /* verify password and email */ if(strlen($password)!=32) $password = md5($password); - + $ok = 1; $myid = DB_get_userid('email-password',$email,$password); if(!$myid) $ok = 0; - + if($ok) { - /* user information is ok */ + /* user information is ok, set session variabel */ $myname = DB_get_name('email',$email); $_SESSION["name"] = $myname; } |