Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is how I currently do a query and return a dataset in CodeIgniter:

$sql = "SELECT `user_id`, `username`
    FROM `users`
    LIMIT 10";

$query = $this->db->query($sql);

$users = array();
foreach($query->result() => $row) {

    $users[] = array(
        'user_id'   => $row->user_id,
        'username'  => $row->username
    );
}
return $users;

As you can see I explicitly write what fields I want to return:

    $users[] = array(
        'user_id'   => $row->user_id,
        'username'  => $row->username
    );

Is there a way to have this be done automatically. So all fields that are selected in the sql query will be listed as the key and value of the array being returned?

share|improve this question

1 Answer

up vote 1 down vote accepted

Yes, there is. Use result_array().

foreach ($query->result_array() as $row)
...

You can find out more about this here.

share|improve this answer
perfect thanks! – TK123 Jul 13 '12 at 3:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.