I am using CodeIgniter for my project. In model I have written a function to verify whether similar datas are available or not. I have used rowcount() too. But I can't solve the problem. Here is my code:
public function  student_verification()
{
    $email = $this->input->post('email');
    $verification = $this->input->post('verification');
    $row = $this->db->query("SELECT * FROM student_sign_up WHERE email = '$email' AND verification = '$verification'  ");
    if(mysql_num_rows($row)>0)
    return true;
    else
    return false;
 
     
    