Lautarox Posted June 16, 2008 Share Posted June 16, 2008 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 More sharing options...
monkeypaw201 Posted June 16, 2008 Share Posted June 16, 2008 you never defined the $username... try and replace the $username in the if statement with $usuario Link to comment https://forums.phpfreaks.com/topic/110451-solved-login-function-problem/#findComment-566673 Share on other sites More sharing options...
Lautarox Posted June 16, 2008 Author Share Posted June 16, 2008 lol, you'r right, thanks Link to comment https://forums.phpfreaks.com/topic/110451-solved-login-function-problem/#findComment-566744 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.