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

  • Home
  • SEARCH
  • 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 9240807
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T08:15:12+00:00 2026-06-18T08:15:12+00:00

I’m trying to build a page which queries my database and then formats output

  • 0

I’m trying to build a page which queries my database and then formats output so another webservice/page can access the data.

Ideally I wanted to explore having the data in JSON format, but that is not working. The other problem I have which is more major than the JSON not working is, if I have 3 records in $reportsResult, only the last one is displayed.

Anyone with some help please. Oh do I also need to print_r for the external webpage to retrieve the data or is there a better way?

class Pupil {
    public $FirstName = "";
    public $LastName  = "";
}

foreach($reportsResult->getRecords() as $reportRecord) {
    $Pupil = new Pupil();
    $Pupil->FirstName = $reportRecord->getField('FName');
    $Pupil->LastName = $reportRecord->getField('SName');
}
json_encode($Pupil);

OK managed to figure out how how to get all records from the loop, but its still not displaying in json format when I do a print_r – am I missing something?

$AllPupils = array();

foreach($reportsResult->getRecords() as $reportRecord)
{

$Pupil = new Pupil();
$Pupil->FamID = $reportRecord->getField('FName');
$Pupil->ChildName = $reportRecord->getField('SName');

array_push($AllPupils, $Pupil);
}

json_encode($AllPupils);
  • 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-18T08:15:13+00:00Added an answer on June 18, 2026 at 8:15 am

    You will probably run into issues since json_encode wont handle the whole object. for that, you may want to serialize the $Pupil object.

    Something like below may work for you though. It will assign the values to a returned array, which will allow json_encode to execute gracefully:

    class Pupil {
        public $FirstName = "";
        public $LastName  = "";
    
        public function getAttr(){
            return array("FirstName" => $this->FirstName, "LastName" => $this->LastName);
        }
    }
    
    $json = array();
    
    foreach($reportsResult->getRecords() as $reportRecord) {
        $Pupil = new Pupil();
        $Pupil->FirstName = $reportRecord->getField('FName');
        $Pupil->LastName = $reportRecord->getField('SName');
    
        $json[] = $Pupil->getAttr();
    }
    
    echo json_encode($json);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
I'm trying to select an H1 element which is the second-child in its group
I'm trying to convert HTML to plain text. I get many &\#8217; &\#8220; etc.
Let's say I'm outputting a post title and in our database, it's Hello Y’all
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
I am trying to find ID3V2 tags from MP3 file using jid3lib in Java.
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I am confused How to use looping for Json response Array in another Array.

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.