Welcome Guest, Not a member yet? Register   Sign In
Newbie at Codeigniter with Login Model
#1

[eluser]Unknown[/eluser]
Hi , every one , well , this is first time i use a framework , Friends recommanded me CodeIgniter , that i found very usefull !
well i have problem with the mysql_nu_rows i didn't find an equivalent in Db librairy
please help me solving this problem , i need to uses it here
Code:
<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
class login_model extends CI_Model{
    public function verify_login($name,$pass){
      $query= $this->db->get_where('ci_users', array('name' => $name,
                                              'pass' =>$pass
                                              ));
       if($this->db->count_all()>0)
         return 1;
         else{
             return 0;
         }
     }  
}
?>
please tell me if i have anything wrong !
i have always 0 as value of return wich means count_all is null
of course with correct login name and pass
#2

[eluser]Benito[/eluser]
Welcome to the Forums!
The reason for your problem is that you are not returning the results.
What you should be using is:
Code:
if($query->num_rows() == 1)
  return $query->row();
else
  return FALSE;
Of course you can use result(), result_array() etc. whichever suits your needs.
You should check the documentation for generating query results.

Cheers.




Theme © iAndrew 2016 - Forum software by © MyBB