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 8069247
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T12:57:44+00:00 2026-06-05T12:57:44+00:00

I have two tables: orders: orderid customer_id amount 1 5 1 2 5 2

  • 0

I have two tables:

orders: 
orderid      customer_id amount
1       5           1
2       5           2
3       8           3
4       5           11
5       8           45
6       11          23
7       11          2

orders_items:
id      orderid      item    quantity
1       1           'item1'     1
2       1           'item2'     2
3       2           'item1'     1 
4       3           'item1'     3
5       3           'item2'     1 
6       3           'item3'     1

Now I would like to get the infomation of every order including all the different items per order.
I use:

 $this->db->select()->from('orders')->join('orders_items', 'orders.orderid = orders_items.orderid' );
    $query = $this->db->get();
    $result_array = $query->result_array();

This however gives me the array with only the last item for every order. What am I doing wrong?
My final array should be something like this:

Array
(
    [0] => Array
        (
            [orderid] => 49
            [customerid] => 2
            [amount] => 438.00
            [id] => 63
            array(
               array(
                 [item] => Service1
                 [quantity] => 22
                 [subtotal] => 439
                    ),
               array(
                 [item] => Service2
                 [quantity] => 22
                 [subtotal] => 439
                    )
                 )
        )

How should I do this?

  • 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-05T12:57:46+00:00Added an answer on June 5, 2026 at 12:57 pm

    need to do foreach loop like :

    foreach ($query->result_array() as $row)
    {
       echo $row['title'];
       echo $row['name'];
       echo $row['body'];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two tables: orders and orders_items. Both sharing the field orderID. I want
I have two tables Orders(ID,ORDERDATE,DELIVERYDATE,GOODID,QUANTITY,COLLECTIONFROM,DELIVERYTO,NOTES) and ROLLINGSTOCK_ORDER(ORDERID,ROLLINGSTOCKID,DEPARTUREDATE,DELIVERYDATE,ROUTEID) i have created a trigger to update
Hie frnds, I have two tables say Orders and OrdersXML now I wish to
I have these two tables Orders and Employees Orders Table OrderID EmployeeID 1 1
Customers customer_id Orders order_id customer_id fk If I have two tables and define a
I have two tables: orders (id); order_items(id, order_id, item_id, quantity) Let's say I have
I have two tables. Orders OrderID | UserID | OrderTotal 1 | 1 |
Let's say I have two tables -- Products and Orders. For the sake of
If I have two tables, Customers and Orders, and I want to look up
Using sqlite3, I have two tables: products, orders. I want to know how many

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.