Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8241257
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T20:46:40+00:00 2026-06-07T20:46:40+00:00

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

  • 0

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?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T20:46:42+00:00Added an answer on June 7, 2026 at 8:46 pm

    Yes, there is. Use result_array().

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

    You can find out more about this here.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For this query: $sql='select col from table where other_col=?'; I am currently getting the
I currently have this query set-up: SELECT topic.content_id, topic.title, image.location FROM mps_contents AS topic
I currently have a query that looks like this: SELECT NON EMPTY ([Measures].[TOTAL]) ON
Currently I'm running a MySQL query like this $query = SELECT t1.id AS 'post_id',
I'm currently trying to run a LINQ query over a MS SQL database. This
I'm using the following mysql query to return some data from my database. Currently
I'm currently using the following query (simplified indeed) : SELECT ( SELECT COUNT(id) FROM
I have a DataSet that I fill with a SQL select query. I then
Looking to do a bit of refactoring... Using NHibernate I have this query currently
I'm currently doing this query to find the guy who makes the most calls:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.