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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:20:03+00:00 2026-05-27T07:20:03+00:00

I have a jQuery post that returns some objects. So, I have a DB

  • 0

I have a jQuery post that returns some objects.

So, I have a DB query result that I do json_encode($result) and then I send it as a response in the success function inside the jQuery post.

If I console.log the response I see multiple objects. What I want is to send the response as an array of arrays.

In PHP

json_encode($results)

In javascript:

success: function(json) {
  console.log(json);
}

In console log:

[>Object , >Object , >Object]

Any ideas?

  • 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-27T07:20:04+00:00Added an answer on May 27, 2026 at 7:20 am

    Your $results in php is an array of objects or of associative arrays. Make it an array of numerically-indexed arrays before you send with casting:

    // ASSUMING each $result object does not have its own nested arrays
    foreach ($results as &$result) {
        $result = array_values((array) $result);
    }
    

    Note you will lose the ability to get items by column name.

    But please step back and think about where your $result comes from.

    If you are using mysql driver, consider doing this when building your result:

    $results = array();
    // Note we use MYSQL_NUM option, so $row looks like array('col1value', 'col2value')
    while (FALSE !== ($row = mysql_result_array($resource, MYSQL_NUM))) {
        $results[] = $row;
    }
    
    json_encode($results);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a jQuery post function that returns a response on success after the
I have some web application that uses jQuery to send AJAX requests to server.
I have a page that uses jQuery's $.post() method to get some html and
I have a Page that expects a POST Request and returns some JSON. Essentially
I have a form that uses jQuery to submit an ajax post and it
I have written a form using the jQuery .post() function to post the data
I have a piece of jQuery code that queries a page via POST and
I have the following JSON: {COLUMNS:[ID,FIRSTNAME],DATA:[[1,Steve],[2,Jim],[3,Bill],[4,Tony]]} I am trying to write some jQuery that
I have some jQuery code in an external Javascript file that is making an
I have a webservice function that returns something like the following: New Orleans, Louisiana

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.