Ok j'ai Trouvé Moi-même La solution . Merci pour Votre Supporte
Voici Mon code :
<table class="ranking" >
<tr><th>rank</th><th>Username</th><th>points</th></tr>
<?php
$i = 0;
$con = mysqli_connect("localhost", "root" , "" , "dbtest") or die ("Error Connection");
$query = "SELECT * FROM users ORDER BY -points LIMIT 10";
$result = mysqli_query($con , $query);
$i++;
while($row = mysqli_fetch_array($result)){
echo "<tr><td>" .$i++. "</td><td>" .$row["username"]."</td><td>".$row["points"]."</td></tr>";
}
?>
</table>
Modifié par SiMooW le 25/06/2016 à 03:30
Voici le Probleme :
25 juin 2016 à 15:32
Ne devrais tu pas utiliser $row ?
25 juin 2016 à 16:56