![]() |
password and username verification - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: password and username verification (/showthread.php?tid=44416) |
password and username verification - El Forum - 08-13-2011 [eluser]terry101[/eluser] I created a username/password check before and it worked fine for my login. I was trying to add a session with what i had before but i realized that now my password and username verification isnt work where it returns false. I don't see any difference in what i had before, not sure where i could have messed it up. I dont get any errors but when i type in a valid username/password (already stored in database) it gives me Code: echo 'Username or password is invalid, try again'; Code: $this->output->enable_profiler(1); Controller Code: function login() { Model Code: function check_login ($username, $password) { |