') . EOL; print('

Nouveau vote pour la votation :

'); $path = $_SERVER["PHP_SELF"]; $idVotation = getpost("id"); $query = "SELECT libelle FROM liste_votations WHERE id='" . $idVotation . "'"; $db->query($query); if (array_key_exists("idVotation", $GLOBALS) and empty($idVotation)) { $idVotation = $GLOBALS["idVotation"]; } if (empty($idVotation)) { choixVotation($path, 0, false); }else { $method = getpost("method"); $libelle = getpost("libelle"); if (empty($method) or empty($libelle)) { votesForm($path); }else { $query = "INSERT INTO liste_votes ('libelle', 'method', 'id_votation') VALUES ('" . $libelle . "', '" . $method . "', '" . $idVotation . "')"; print($query); //$db->query($query); } } $db->close(); print('
'); require_once("footer.html"); ?>