Merci zack ma carte ne bouge plus mais il n'y a plus qu'un seul carré !!! Pourquoi l'informatique ca bug tout le temp^^
Code PHP :
<?php
for ($y=$y_fin;$y>=$y_debut;$y--)
{
$Yi = 7;
for($x=$x_debut;$x<=$x_fin;$x++)
{
$sql_2 = mysql_query('SELECT pseudo FROM membre WHERE posx='.$x.' and posy='.$y.' ') or die(mysql_error());
$donnees = mysql_fetch_array($sql_2);
$Xi = 0;
$iX = (($Xi-$Yi) * (55));
$iY = ((($Xi+$Yi)/2) * (55));
if($x==$posx && $y==$posy)
echo '<div style=" position: absolute; left: 400px; top: 400px; "><a href="http://wouww.les-terres-d-agraec.webou.net/jeur.php?posx='.$x.'&posy='.$y.'" class="info"><img src="http://img376.imageshack.us/img376/1082/isosr4.png" alt="carré" style="top:'.$iY.'px; left:'.$iX.'px; position:absolute;"/><span>Joueur:'.$donnees['pseudo'].'</span></a></div>';
else
if(!empty($TabMAP[$x][$y]))
echo '<div style=" position: absolute; left: 400px; top: 400px; "><a href="http://www.les-terres-d-agraec.webou.net/joueur.php?posx='.$x.'&posy='.$y.'" class="info"><img src="http://img376.imageshack.us/img376/9562/isosp1.png" alt="carré" style="top:'.$iY.'px; left:'.$iX.'px; position:absolute;"/><span>Joueur:'.$donnees['pseudo'].'</span></a></div>';
else
echo '<div style=" position: absolute; left: 400px; top: 400px; "><img src="http://img386.imageshack.us/img386/8008/isooy0.png" alt="carré" style="top:'.$iY.'px; left:'.$iX.'px; position:absolute;"/></div>';
$Xi++;
}
$Yi--;
}