debug
This commit is contained in:
parent
5f6a1e827b
commit
70f82f66ba
@ -7,19 +7,23 @@ require_once 'fonctions.inc.php';
|
||||
|
||||
$db = new db();
|
||||
|
||||
$idVotation = getpost("id");
|
||||
|
||||
$query = "SELECT libelle FROM liste_votations WHERE id='" . $idVotation . "'";
|
||||
$db->query($query);
|
||||
$votationName = $db->result->fetch_assoc();
|
||||
|
||||
print('<br><br>
|
||||
<!-- lalis Grid Section -->
|
||||
<section id="content">
|
||||
<div class="container">') . EOL;
|
||||
print(' <div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
<h3>Nouveau vote pour la votation : </h3>');
|
||||
<h3>Nouveau vote pour la votation : ' . $votationName["libelle"]. '</h3>');
|
||||
|
||||
$path = $_SERVER["PHP_SELF"];
|
||||
$idVotation = getpost("id");
|
||||
|
||||
$query = "SELECT libelle FROM liste_votations WHERE id='" . $idVotation . "'";
|
||||
$db->query($query);
|
||||
print
|
||||
|
||||
if (array_key_exists("idVotation", $GLOBALS) and empty($idVotation))
|
||||
{
|
||||
|
Reference in New Issue
Block a user