Total Manager Posté 17 Juillet 2004 Partager Posté 17 Juillet 2004 (modifié) Voici le code , le seul blem c'est qu'il me raffiche la premiere ligne du tableau que je ne veut pas à chaque fois comment faire svp <?include ('secure.php');$team =$_SESSION['club'];require_once("fonctions.php");connecting();print'<div align="center"><img src="clubs/'.$_SESSION['club'].'.gif">';$r=mysql_query ("SELECT * FROM joueurs WHERE club ='$team' ");$nb=mysql_num_rows($r);$i=0;while($tableau=mysql_fetch_array($r) ){ print'<div align="center"><table border> <tr> <td width="136" height="18"><p>Joueur</td> <td width="62" height="18"><p>Poste</td> <td width="90" height="18"><p>Gardien</td> <td width="68" height="18"><p>Defense</td> <td width="96" height="18"><p>Attaque</td> </tr><tr> <td width="136" height="18"><p><a href="?page=option_joueur&id='.$tableau[id].'">'.$tableau[nom].' '.$tab[prenom].'</a></td> <td width="62" height="18"><p>'.$tableau[poste].'</td> <td width="90" height="18"><p>'.$tableau[gardien].'</td> <td width="68" height="18"><p>'.$tableau[defense].'</td> <td width="96" height="18"><p>'.$tableau[attaque].'</td> </tr> </table></div>';} $i++;?> Voila si quelqu'un pouvez m'aider je pense que je finirais mon jeu d'ici la semaine prochaine Modifié 17 Juillet 2004 par Total Manager Lien vers le commentaire Partager sur d’autres sites More sharing options...
Jan Posté 17 Juillet 2004 Partager Posté 17 Juillet 2004 Essaye: <?include ('secure.php');$team =$_SESSION['club'];require_once("fonctions.php");connecting();print'<div align="center"><img src="clubs/'.$_SESSION['club'].'.gif">';print'<div align="center"><table border><tr> <td width="136" height="18"><p>Joueur</td> <td width="62" height="18"><p>Poste</td> <td width="90" height="18"><p>Gardien</td> <td width="68" height="18"><p>Defense</td> <td width="96" height="18"><p>Attaque</td></tr>';$r=mysql_query ("SELECT * FROM joueurs WHERE club ='$team' ");$nb=mysql_num_rows($r);$i=0;while($tableau=mysql_fetch_array($r) ){print'<tr> <td width="136" height="18"><p><a href="?page=option_joueur&id='.$tableau[id].'">'.$tableau[nom].' '.$tab[prenom].'</a></td> <td width="62" height="18"><p>'.$tableau[poste].'</td> <td width="90" height="18"><p>'.$tableau[gardien].'</td> <td width="68" height="18"><p>'.$tableau[defense].'</td> <td width="96" height="18"><p>'.$tableau[attaque].'</td> </tr>';}print'</table></div>'; $i++;?> Lien vers le commentaire Partager sur d’autres sites More sharing options...
Sujets conseillés
Veuillez vous connecter pour commenter
Vous pourrez laisser un commentaire après vous êtes connecté.
Connectez-vous maintenant