Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time

List all Companies

This example displays how to list all companies. All there is to it is using function $connector->getCompanies() .

// Get companies
$result = $connector->getCompanies();

Output

Simple HTML table

To ease orientation in output of our search we can create simple HTML table. The output should look something like this. example output

Raw output

Alternatively, you can add var_dump($output) at the end of the example code to see raw output.

Sample code

To see the whole sample code click here