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
#2

[eluser]deviant[/eluser]
Don't you mean to use result_array() ?
#3

[eluser]Kemik[/eluser]
row_array() works too. The difference is row_array() only returns one row.




Theme © iAndrew 2016 - Forum software by © MyBB