Using PHP, how to list EXC API information, I'm having some difficulties and who I can help,
Details: LINK API :
Here is an example of how I tried to do it:
<?php
$json = file_get_contents("https://trade.exccripto.com/api/v3/public/getticker?market=DCR_BTC");
$coins = json_decode($json);
?>
<table style="width:100%">
<tbody>
<tr>
<th>Market</th>
<th>Bid</th>
<th>Ask</th>
<th>Last</th>
</tr>
<?php foreach ($coins as $coin) { ?>
<tr>
<td><?php echo $coin->Market; ?></td>
<td><?php echo $coin->Bid; ?></td>
<td><?php echo $coin->Ask; ?></td>
<td><?php echo $coin->Last; ?></td>
</tr>
<?php } ?>
</tbody>