1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| <?
print("<table width='300' border='1'>
<tr>
<td align='center'>Joueur</td>
<td align='center'>0 Point</td>
<td align='center'>1 Point</td>
</tr>");
$requete_txt = "SELECT joueur_1.joueur_id AS ID, CONCAT_WS( ' ', joueurs_nom, `joueurs_prenom` ) AS joueur, joueur_1.appariement AS Appariement
FROM joueur_1, joueurs WHERE joueur_1.joueur_id = joueurs.joueurs_id AND joueur_1.tournois_id ='".$_GET['tournois']."' ORDER BY joueur_1.appariement";
$result_sql = mysql_query($requete_txt);
while ($resultat = mysql_fetch_row($result_sql))
{
print("<tr><td align='left'>".$resultat[1]."</td>");
}
--> code pour bouton radio mais la est la question...
print("</tr>");
print("</ table>");
?> |