function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Kevin DavisKevin Davis 

Retrieve Data from Account object Display (PHP)

Hi there,

 

How would I display data that I have retrieved data from the object using the for loop.

 

Thank you,

Kevin

ktshannonktshannon

First of all have you successfully set up the PHP Toolkit on a server yet? If not, that is step 1.

The next step then is to figure out the query you want to parse. ex. SELECT Id, Name FROM Account LIMIT 10

Once you have the query, then you can call it via the API and store the results in an array.

You can then loop through the array to display the data.