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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T21:38:06+00:00 2026-05-20T21:38:06+00:00

I am having some problems accessing some array data effectively and need a couple

  • 0

I am having some problems accessing some array data effectively and need a couple of tips.

I am doing a database call that returns data similar to this:

+------+------------+------------+-----------+
| id   | key        | part_num   |    value  |
+------+------------+------------+-----------+
|    1 | application| p1         |          1|
|    2 | application| p1         |          2|
|    3 | capsule    | p1         |          3|
|    3 | capsule    | p1         |          4|
|    4 | instrument | p1         |          5|
|    5 | instrument | p1         |          6|
|    5 | instrument | p1         |          7|
|    1 | application| n8         |          1|
|    2 | application| n8         |          2|
|    3 | capsule    | n8         |          3|
|    3 | capsule    | n8         |          4|
|    4 | instrument | n8         |          5|
+------+------------+------------+-----------+

Note the part_num

I really only need the part_num and value out of this (which i am getting), but i would like to group it in PHP by the part number.

For example something even as simple as printing this:

Part: (p1)
Values: 1, 2, 3, 4, 5, 6, 7.
Part: (n)
Values: 1, 2, 3, 4, 5.

PLEASE NOTE: I can’t do this with mysql as I am using this data for other things and I don’t want to be doing multiple database requests.

I hope i’ve made this clear enough, let me know if more info is needed.

  • 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-05-20T21:38:07+00:00Added an answer on May 20, 2026 at 9:38 pm

    Assuming your current data is in the variable $data you can loop through the rows and create a new array $partnums.

    $partnums = array();
    
    foreach($data as $row) {
        if (!isset($partnums[$row['part_num']]))
            $partnums[$row['part_num']] = array();
        $partnums[$row['part_num']][] = $row['value'];
    }
    

    Now $partnums is an array that has the part_num’s for keys… each of which references an array of values associated with that part_num.

    To print out the values like you have suggested:

    foreach($partnums as $partnum => $values) {
        printf('Part: (%s)'.PHP_EOL, $partnum);
        printf('Values: %s.'.PHP_EOL, implode(', ', $values));
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I heard that some people where having problems accessing their sites which get their
I have a class 'Data' that uses a getter to access some array. If
Hello guys I am having some problems with exact matches while doing a NamedQuery.
Having some problems with creating regular expression with subpatterns on php. Need some help.
I'm having some problems with encapsulation in C#. There are two specific scenarios that
I am having some problems with linq-to-sql lately. The problem is that it thinks
I'm having some problems integrating MS MapPoint 2009 into my WinForms .Net 2.0 application
I have been having some problems trying to get my PHP running. When I
I'm having some problems with the ranking used by fulltext search in SQL Server.
I'm having some problems with a datagridview element I'm using in VS2008. This DataGridView

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.