3 include_once("traitement_pre_affichage.php");
5 if (!$le_participant->valide
)
7 echo '<p><em>Remarque : </em>Il faut être inscrit pour pouvoir voter.</p>';
12 <form id="formulaireJeuxJoues" method="post" action="index.php?page=jeux_joues">
13 <p><input type="hidden" name="set_jeux_joues" value="1" /></p>
15 <tr>', ($le_participant->valide
? '<th></th>' : ''), '<th>Votes</th><th>Jeux</th></tr>';
17 $jeux_query = mysql_query("
18 SELECT jeux.id, jeux.nom, jeux_choisis.participant_id, COUNT(*) + IF(participant_id is not null, 1, 0) - 1 AS nb_vote
19 FROM jeux LEFT JOIN jeux_choisis ON jeux.id = jeux_choisis.jeu_id
21 ORDER BY nb_vote DESC, nom
24 while ($jeu = mysql_fetch_object($jeux_query))
26 # est-ce que le participant courant à voté pour ce jeu ?
27 if ($le_participant->valide
)
29 $a_vote = mysql_fetch_row(mysql_query("
30 SELECT COUNT(*) FROM jeux_choisis
31 WHERE participant_id = ".$le_participant->info
->id
." AND jeu_id = ".$jeu->id
32 )); $a_vote = $a_vote[0];
38 $le_participant->valide
? '<td><input type="checkbox" name="votes[]" '. ($a_vote ? 'checked="checked"' : '') .' value="'.$jeu->id
.'" /></td>' : '',
39 '<td>' . $jeu->nb_vote
. '</td>',
40 '<td ' . ($a_vote ? 'class="aVote" ': '').'>' . traitement_pre_affichage($jeu->nom
) . '</td></tr>';
46 if ($le_participant->valide
)
48 <p>Autre : <input type="text" maxlength="50" name="jeu" /></p>
49 <p><input type="submit" value="Voter" /></p>';
53 # affichage du nombre de vote restant
54 if ($le_participant->valide
)
55 echo '<p>Nombre de votes restant : ' . $le_participant->nb_vote_restant() . '</p>';