1
0
This repository has been archived on 2023-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
dtux__serveur-vote-lalis/vote.resultat.php

127 lines
3.7 KiB
PHP
Raw Normal View History

2021-10-14 17:58:21 +02:00
<?php
2022-09-21 14:47:18 +02:00
2021-10-14 17:58:21 +02:00
require_once 'session_init.php';
require_once 'config.inc.php';
require_once 'db.class.php';
2022-09-14 13:05:25 +02:00
require_once 'entete.php';
require_once 'fonctions.inc.php';
print '<script type="text/javascript">
function show(object, idVote)
{
if (document.getElementById(object+idVote).style.display === "none")
{
document.getElementById(object+idVote).style.display = "block";
document.getElementById("button"+idVote).innerText = "Cacher la liste des votants"
}else
{
document.getElementById(object+idVote).style.display = "none";
document.getElementById("button"+idVote).innerText = "Voir la liste des votants"
}
2021-10-14 17:58:21 +02:00
}
</script>';
2021-10-14 17:58:21 +02:00
2022-09-14 13:05:25 +02:00
$db = new db();
$idVotation = getpost("id");
2022-09-19 12:04:33 +02:00
2022-09-14 13:05:25 +02:00
print(' <br><br>
2021-10-14 17:58:21 +02:00
<!-- lalis Grid Section -->
<section id="content">
<div class="container">
<div class="row">
2022-09-14 13:05:25 +02:00
<div class="col-lg-12 text-center"><h3>LISTE DES VOTATIONS</h3>');
2022-09-19 12:04:33 +02:00
if (empty($idVotation))
2022-09-14 13:05:25 +02:00
{
choixVotation('/vote.resultat.php');
}else
{
print('
2021-10-14 17:58:21 +02:00
<h3>VOTE</h3>
<h4>');
2022-09-19 12:04:33 +02:00
$query = 'SELECT *, UNIX_TIMESTAMP(DATE_ADD(dateFin, INTERVAL 1 DAY)) as tf FROM liste_votations WHERE id = ' . $db->protect($idVotation);
2021-10-14 17:58:21 +02:00
$result = $db->query($query);
$votation = $db->result->fetch_array(MYSQLI_ASSOC);
if ($result === FALSE)
{
print "Votation non trouvée" . EOLH;
}else
{
$now = date('Y-m-d');
if ( time() > $votation['tf'] )
2021-10-14 17:58:21 +02:00
{
echo $votation["libelle"] . "</h4>";
$listeAdherents = listeAdherents();
2021-10-14 17:58:21 +02:00
print (' <hr class="star-primary">
</div>
</div>
<div class="row">');
$query='SELECT * FROM liste_votes WHERE idVotation="' .$db->protect( $idVotation) .'"';
$result = $db->query($query);
$votes = $db->result->fetch_all(MYSQLI_ASSOC);
foreach ($votes as $vote)
{
2022-09-23 00:52:56 +02:00
switch ($vote["method"])
2021-10-17 15:55:05 +02:00
{
2022-09-23 00:52:56 +02:00
case 1:
$total = 0;
echo "<div><h5>" . $vote["libelle"] . "</h5><br>";
$query='SELECT * FROM liste_candidats WHERE idVotation=' . $idVotation . ' AND idVote=' . $vote["id"];
$result = $db->query($query);
$candidats = $db->result->fetch_all(MYSQLI_ASSOC);
echo "<pre>";
//$resultatCandidats = '';
$query='SELECT COUNT(*) as n FROM votes WHERE idVotation=' . $db->protect($idVotation) . ' AND idVote=' . $vote["id"] .' AND idCandidat=0';
$result = $db->query($query);
$resultat = $db->result->fetch_array(MYSQLI_ASSOC);
$blanc = $resultat["n"];
echo 'Votes blancs&nbsp;: ' . $blanc . '<br>';
foreach($candidats as $candidat)
{
$query='SELECT COUNT(*) as n FROM votes WHERE idVotation=' . $db->protect($idVotation) . ' AND idVote=' . $vote["id"] .' AND idCandidat=' . $candidat["id"];
$result = $db->query($query);
$resultat = $db->result->fetch_array(MYSQLI_ASSOC);
echo $candidat["candidat"] . '&nbsp;:' . $resultat["n"] . '<br>';
$resultatCandidats[$candidat['candidat']] = $resultat["n"];
$total += $resultat["n"];
}
array_multisort($resultatCandidats, SORT_DESC, SORT_NUMERIC);
reset($resultatCandidats);
if ($total >= $blanc)
{
print("<h5>Remporte le vote : " . key($resultatCandidats));
unset($resultatCandidats);
print("</h5>");
}else
{
print("<h5>Aucun candidat n'emporte le vote, car il y a plus de 50% de votes blancs.</h5>");
}
listeVotants($idVotation, $vote["id"], $listeAdherents);
print("</pre></div><br>" . EOLH);
break;
default:
break;
2021-10-17 15:55:05 +02:00
}
2021-10-14 17:58:21 +02:00
}
}else
{
2021-10-17 15:55:05 +02:00
print "Bonjour, vous pourrez consulter les résultats à partir du " . formattedate('fr', $votation['tf'] , "Europe/Paris") . "</h4>";
2021-10-14 17:58:21 +02:00
}
}
print (' <div>
</div>
</div>
</div>
</section>');
}
2022-09-19 12:04:33 +02:00
$db->close();
2021-10-14 17:58:21 +02:00
require_once 'footer.html';
?>