Jump to content

[SOLVED] Login function problem


Lautarox

Recommended Posts

Can someone tell me whats wrong with this login function?

Everything works correctly exept for the if, i have echoed evrything and looks perfectly, buy i can't make de if work ¬¬..

       function login ($usuario, $password) {
                parent::connect();
                $query = "SELECT username, password, level, email FROM users WHERE username = '$usuario'";
                $resultado = parent::query($query);
                $encrypted = sha1($password);
                while($arr = parent::arr($resultado)) {
                if ($username == $arr['username'] && $encrypted == $arr['password']) {
                   $_SESSION['username'] = $arr['username'];
                   $_SESSION['email'] = $arr['email'];
                   $_SESSION['level'] = $arr['level'];
                   $_SESSION['logedin'] = 1;
                   return true;
                }
                else {
                   return false;
                }
                }
       }

Link to comment
https://forums.phpfreaks.com/topic/110451-solved-login-function-problem/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.