Posición | Nombre | Puntos
1............| pepe......| 10000
2............| alberto...| 5000
3............| juan.......| 2000
lo he intentado de este modo:
Código PHP:
<table cellspacing="0px" style="font-size:10px;width:310px;">
<tr>
<td>Posición</td>
<td>Nombre</td>
<td>Puntos</td>
</tr>
<?
include("config.php");
$sql = "SELECT (@row:=@row+1) AS row, merchname, puntos FROM usuarios ORDER BY puntos";
$sql = mysql_query($sql) or mysql_error();
while($rs=mysql_fetch_array($sql)){
if($rs['usuario']){
}
echo "<tr>"
."<td>".$rs['row']."</td>"
."<td>".$rs['merchname']."</td>"
."<td>".$rs['puntos']."</td>"
."</tr>";
}
?>
</table>