Here's the json I have that is pulling data from a 3rd party page.
http://freerdarts.com/api/tues_standings_api_2019.php
I am formatting the data into a table like this.
<table class="tbl_container" id="standings">
<thead>
<tr>
<th>TEAM</th>
<th>WIN %</th>
<th>GAMES</th>
<th>WON</th>
</tr>
</thead>
<tbody>
<?php
foreach($standings as $row):
?>
<tr>
<td><?=$row['team'];?></td>
<td><?=$row['win%'];?></td>
<td><?=$row['games'];?></td>
<td><?=$row['wins'];?></td>
</tr>
<?php endforeach;?>
</tbody>
</table>
So under the first td 'team' it inserts the 10 teams, but I want to be able to replace the data with player names instead of the 'Team 01' or 'Team 02' etc...For each one, it pulls I need to substitute for a person name.
freerdarts.comand the link might break over time.