Part-9 | Get TLD Lists | Delete Domain | Get Domain Detail | Godaddy Domains API in PHP

0.000
PART-9
Contact Information
Detailed Information

<table class=”table table-bordered”>
<thead>
<th>Domain Name</th>
<th>Expires</th>
<th>Status</th>
<th>Auto Renew</th>
</thead>
<tbody>
<tr>
<td><?php echo $domainDetail[‘domain’]?></td>
<td><?php echo $domainDetail[‘expires’]?></td>
<td><?php echo $domainDetail[‘status’]?></td>
<td><?php echo $domainDetail[‘renewAuto’]==’1′?’Yes’:’No’?></td>
</tr>
</tbody>
</table>
<h4>Contact Admin Detail</h4>
<table class=”table table-bordered”>
<thead>
<th>First Name</th>
<th>Last name</th>
<th>Email</th>
<th>Phone</th>
<th>organization</th>
</thead>
<tbody>
<tr>
<td><?php echo $domainDetail[‘contactAdmin’][‘nameFirst’]?></td>
<td><?php echo $domainDetail[‘contactAdmin’][‘nameLast’]?></td>
<td><?php echo $domainDetail[‘contactAdmin’][‘email’]?></td>
<td><?php echo $domainDetail[‘contactAdmin’][‘phone’]?></td>
<td><?php echo $domainDetail[‘contactAdmin’][‘organization’]?></td>
</tr>
</tbody>
</table>
<table class=”table table-bordered”>
<thead>
<th>address1</th>
<th>address2</th>
<th>city</th>
<th>country</th>
<th>postalCode</th>
<th>state</th>
</thead>
<tbody>
<tr>
<td><?php echo $domainDetail[‘contactAdmin’][‘addressMailing’][‘address1’]?></td>
<td><?php echo $domainDetail[‘contactAdmin’][‘addressMailing’][‘address2’]?></td>
<td><?php echo $domainDetail[‘contactAdmin’][‘addressMailing’][‘city’]?></td>
<td><?php echo $domainDetail[‘contactAdmin’][‘addressMailing’][‘country’]?></td>
<td><?php echo $domainDetail[‘contactAdmin’][‘addressMailing’][‘postalCode’]?></td>
<td><?php echo $domainDetail[‘contactAdmin’][‘addressMailing’][‘state’]?></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>