I would like to make the positions appear. I have no idea how. Below I'll be giving a demo and my code
<?phpinclude("./configs/dados.php");
$ranking = "SELECT * FROM usuarios ORDER BY pontos_total Desc LIMIT 3,10";
$limiteranking = mysql_query("$ranking");
while ($ranking = mysql_fetch_array($limiteranking)) {
$nomeran = $ranking['login'];
$pontosran = $ranking['pontos_total'];
?>
<tr style="background:#d3a298">
<th scope="row"><center>4º</th></center>
<td style="color:#383838"><?php echo $nomeran; ?></td>
<td style="color:#383838"><?php echo $pontosran; ?></td>
</tr>
<?php } ?>
* Code only from 4th down. As you can see, I would like to see 4th, 5th, 6th