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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T04:31:14+00:00 2026-05-15T04:31:14+00:00

How can i convert mysql results (from mysql_fetch_array) into such a form? $some =

  • 0

How can i convert mysql results (from mysql_fetch_array) into such a form?

$some = array(
     "comments" => array(
         array( "text" => "hi", "id" => "1" ),
         array( "text" => "hi", "id" => "2" ),
         array( "text" => "hi", "id" => "3" ),
         array( "text" => "hi", "id" => "4" )
    )
);

while the db looks like:

comments

id  text
1   blabla bla
2   bla bla

i’ve tried to fetch the values with foreach/while and insert it into two arrays but no
success…

$some = array(
    "comments" => array()
);

$q = $mysql->sf('*', TBL_QST);
foreach($mysql->fetch($q) as $row) {
    $some[] = $row;
    // $some["comments"][] = $row;
}
  • 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-15T04:31:14+00:00Added an answer on May 15, 2026 at 4:31 am

    My print_r gives:

    Array
    (
        [comments] => Array
            (
                [0] => Array
                    (
                        [text] => lorem ipsum
                        [id] => 0
                    )
                [1] => Array
                    (
                        [text] => lorem ipsum
                        [id] => 1
                    )
                [2] => Array
                    (
                        [text] => lorem ipsum
                        [id] => 2
                    )
            )
    )
    

    And the php I did for it is:

    $comments = array(
        'comments' => array()
        );
    
    /* To simualate the loop */
    for ($i = 0; $i < 3; $i++) { 
        array_push($comments['comments'], array(
            'text' => 'lorem ipsum',
            'id' => $i
            )
        );
    }
    

    I hope this will be to any help and that I didn’t misunderstood your question.

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

Sidebar

Related Questions

How can I convert a database from MySQL to MS SQL Server 2005?
Using PHP, I can convert MySQL data or static table data to csv, Excel,
Seeing as you can convert any document to a byte array and save it
I have to insert some data into a MySQL table. The data will be
I am trying to convert a mysql DATETIME into this format m/d/y but the
I have an old mysql code which I want to convert into PHP data
I need to get some data from a mysql database.I'm running a php script
Is there any way so we can return a table from a mySQL function?
You can convert a negative number to positive like this: int myInt = System.Math.Abs(-5);
we can convert character to an integer equivalent to the ASCII value of the

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.