Welcome Guest, Not a member yet? Register   Sign In
Call to undefined function: row_array()
#1

[eluser]Kemik[/eluser]
Hello,

I've used row_array() before so I'm not sure why it's giving an error

Code:
$this->db->select('user_name, email');
$this->db->where('user_id', $user_id);
$query = $this->db->from('users');
$data = $query->row_array();
                    
$data['message'] = '2';
$this->emailKickedUser($data);

Gives me:
Fatal error: Call to undefined function: row_array()

I have database in the autoload so it cannot be that. Other queries work fine. I just need to put the result in to the data array so it can be passed to the view and the email function.

Edit: Solved. I forgot the $this->db->get();

Thanks


Messages In This Thread
Call to undefined function: row_array() - by El Forum - 08-21-2007, 04:42 AM
Call to undefined function: row_array() - by El Forum - 08-21-2007, 04:50 AM
Call to undefined function: row_array() - by El Forum - 08-21-2007, 05:00 AM



Theme © iAndrew 2016 - Forum software by © MyBB