Can someone tell me why my verify_password is not working in codeigniter
问题 I'm trying to log in using verify_password. I had this working after I updated to php5.5 now it's not working. I don't know what I have done to break it. Here's the Model <?php class Login_model extends CI_Model { public function __construct() { // Call the CI_Model Constructor parent::__construct(); $this -> load -> database(); } public function login($email, $password) { // SELECT id, email, password FROM user_registration WHERE email = $email & password =$password LIMIT 1 $this -> db ->