1 2 3 4 5 6 7 8 9
| <?php
$req2 ="select name, code, rang from qualification, joueur, classement where joueur.nom=qualification.name and qualification.name=classement.nom";
$res2=mysql_query($req2);
while ($resultat2= mysql_fetch_assoc($res2))
{
echo "(" . $resultat2['rang'] . ")" . " " . $resultat2['name'] . " " . "(" . $resultat2['code'] . ")" . " / " ;
$resultat2= mysql_fetch_assoc($res2);
echo "(" . $resultat2['rang'] . ")" . " " . $resultat2['name'] . " " . "(" . $resultat2['code'] . ")" ."<br><br>";
} |
Partager