07-12-2008, 07:22 PM
Je suis désolé de poster mais j'ai réfléchis depuis trois jour et je ne comprend d'ou viens le probleme... Je m'explique:
j'ai crée un générateur de case pour créer une carte(voir carte de carlou):
-ensuite en fonction des cases j'affiche une image spécifique:j'ai crée un générateur de case pour créer une carte(voir carte de carlou):
Code PHP :
<?php
echo '<table border="1" cellspacing="0" cellpadding="0">'."\n";
echo '<tbody>'."\n";
echo '<tr><td> x<br> y</td>'."\n";
for($x=$x_debut;$x<=$x_fin;$x++) { echo '<td align="center" valign="middle" width="40">'.$x.'</td>'."\n"; }
for ($y=$y_fin;$y>=$y_debut;$y--){
echo'<tr ><td align="center" valign="middle" height="40">'.$y.'</td>'."\n";
for($x=$x_debut;$x<=$x_fin;$x++) {
// on tape les conditions suivante ( voir point 1 , 2 , 3)
}
echo '</tr>';
}
echo '</tbody>', '</table>';
1.Si on est sur la position du joueur on affiche un carré mauve
Code PHP :
<?php
if($x==$px && $y==$py){ // POSITION DU JOUEUR
echo '<td><img src="http://imgmaker.tr0n1x.com/image/smiley_perso/mask/carre.png"></td>';
}