2017-08-12 41 views
0

。在模型中,我寫了一個函數來驗證相似的數據是否可用。我也使用了rowcount()。但我無法解決問題。 這裏是我的代碼:如何在CodeIgniter中避免「mysqli_num_rows()期望參數1爲mysqli_result,object given」我爲我的項目使用CodeIgniter CodeIgniter

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; 

回答

相關問題