Hi,
For prosperity, here is how you can display a list of all TLD's through the API in a table...
echo "<table>";
if (($packages = $response->response())) {
foreach ($packages as $package) {
echo "<tr>";
$pricingsArray=($package->pricing);
foreach ($pricingsArray as $pricing) {
$priceArray = ($pricing->price);
echo "<td>". $priceArray . "</td>";
}
}
}
echo "</table>";
Thank you for your help on this
I was simply missing another loop