1
0
This commit is contained in:
Daniel Tartavel 2022-09-19 12:43:01 +02:00
parent ade2a8e0c8
commit 63310ff6e1
2 changed files with 3 additions and 2 deletions

View File

@ -16,7 +16,7 @@ print(' <br><br>
</div> </div>
<div class="row"> <div class="row">
<ul> <ul>
<li><a href="../vote.resultat.php">Consulter les résultats d\'une votation</a></li> <li><a href="../vote.resultat.php">liste des votations</a></li>
<li><a href="saisieVotation.php">nouvelle votations</a></li> <li><a href="saisieVotation.php">nouvelle votations</a></li>
<li><a href="saisieVotes.php">Ajouter des votes à une votations</a></li> <li><a href="saisieVotes.php">Ajouter des votes à une votations</a></li>
<li><a href="modifVotation.php">Modifier une votation</a></li> <li><a href="modifVotation.php">Modifier une votation</a></li>

View File

@ -25,9 +25,10 @@ $dateFin = getpost("dateFin");
if ($titre !== null and $libelle!== null and $dateDebut!== null and $dateFin !== null) if ($titre !== null and $libelle!== null and $dateDebut!== null and $dateFin !== null)
{ {
$db = new db(); $db = new db();
$query = "INSERT INTO liste_votations ('titre', 'libelle', 'status', 'dateDebut', 'dateFin') VALUES('" . $titre . "', '" . $libelle . "', '0', '" . $dateDebut . "', '" . $dateFin . "')"; // clotûre $query = "INSERT INTO liste_votations VALUES(0, '" . $titre . "', '" . $libelle . "', '0', '" . $dateDebut . "', '" . $dateFin . "')"; // clotûre
$db->query($query); $db->query($query);
$db->close(); $db->close();
// TODO retour à l'index
}else }else
{ {
votationForm($path, $titre, $libelle, $dateDebut, $dateFin); votationForm($path, $titre, $libelle, $dateDebut, $dateFin);