致命错误:在字符串上调用成员函数query()

时间:2017-11-21 13:47:18

标签: php mysql database codeigniter activerecord

我收到致命错误,我试图在stackoverflow和其他论坛中找到解决方案,但我似乎无法找到它。

错误看起来像:

  

致命错误:在字符串中调用成员函数query()   第19行/home/......./check.php

class M_login extends CI_Model{
    public function num_of_students($name,$adress){     
        $sql="select * from tbl_admin where name='$name' and address='$address'";       
        $query=$this->db->query($sql);      
        return $query->num_rows();
    }

1 个答案:

答案 0 :(得分:0)

 public function num_of_students($name,$adress){     
    $sql="select * from tbl_admin where name='$name' and address='$address'";       
    $query=$this->db->query($sql)->get();      
    return $query->num_rows();
}

我希望这可以帮到你...谢谢!