0
Using PHP, like listing information from the EXC API, I’m having some difficulties and who can help,
Details: LINK API:
Here’s an example of how I tried to do:
<?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>