3 <title
>Toutes les infos des participants de la corcelles
-lan
</title
>
6 <h1
>Toutes les infos des participants de la corcelles
-lan
</h1
>
11 function ON($condition)
13 return $condition ? 'Oui' : 'Non';
16 #connection à la base de données
17 $lien_mysql = mysql_connect ($SQL_HOTE, $SQL_LOGIN, $SQL_PASS);
18 mysql_select_db ($NOM_BASE);
20 $requ = mysql_query("select * from participants order by pseudo");
23 '<table width="100%" border="2" cellpadding="2" cellspacing="2"><tr>
24 <td><b>Pseudo</b></td>
26 <td><b>Prénom + nom</b></td>
28 <td><b>E-mail</b></td>
30 <td><b>Souhaite participer au tournoi War3 ?</b></td>
31 <td><b>Souhaite participer au tournoi Ra3 ?</b></td>
32 <td><b>Remarque</b></td>
33 <td><b>A payé ?</b></td>
37 while($participant = mysql_fetch_object($requ))
40 '<td>',$participant->pseudo
,'</td>',
41 '<td>',($participant->clan_nom
==''?'':'('.$participant->clan_tag
.')'.$participant->clan_nom
),'</td>',
42 '<td>',$participant->prenom
, ' ', $participant->nom
,'</td>',
43 '<td>',$participant->age
,'</td>',
44 '<td>',$participant->e_mail
,'</td>',
45 '<td>',$participant->icq
,'</td>',
46 '<td>',ON($participant->tournoi_war3_1
),'</td>',
47 '<td>',ON($participant->tournoi_ra3_1
),'</td>',
48 '<td>',$participant->remarque
,'</td>',
49 '<td>',ON($participant->a_paye
),'</td>',