Inside this picture it explains it a little better, but basically In the html column, I need to have the players Avatar from an External URL Placed next to the users name. But I cant seem to get it to work I figured I would ask here because this community is rather helpful Here's the code:
<?php
$connection = mysql_connect('REMOVED', 'REMOVED', 'REMOVED');
mysql_select_db('stats');
$query = "SELECT * FROM stats";
$result = mysql_query($query);
while($row = mysql_fetch_array($result)){
echo "<tr><td><img src="'. "https://crafatar.com/avatars/" . $row['uuid'] .
'">" . $row['name'] . "</td>";
echo "<td>" . $row['PLAYER_KILLS'] . "</td>";
echo "<td>" . $row['MOB_KILLS'] . "</td>";
echo "<td>" . $row['DEATHS'] . "</td>";
echo "<td>" . $row['DAMAGE_DEALT'] . "</td>";
echo "<td>" . $row['DAMAGE_TAKEN'] . "</td>";
}
mysql_close();
?>