31-01-2011, 03:27 PM
Oui il ne te faut laisser le mysql_fetch_array() que dans la boulce while.
De plus, un brin d'indentation correcte ne fais pas de mal !
De plus, un brin d'indentation correcte ne fais pas de mal !
$requeteALL = mysql_query('SELECT id,village,posx,posy,skin FROM users WHERE id != '.$_SESSION['userid'].'');
while ($downALL = mysql_fetch_array($requeteALL)) {
$posXall = $downALL['posx'];
$posYall = $downALL['posy'];
printf('<a href="profile.php?id=%d">'.
'<img src="default/images/Jeu/icon%s.png" '.
'style="position:absolute;top:%s;left:%d"/>'.'</a>',
$downALL['id'],
$downALL['skin'],
$downALL[$posYall],
$downALL[$posXall]);
$downALL++;
}