32 lines
679 B
PHP
32 lines
679 B
PHP
<?php
|
|
require_once '../session_init.php';
|
|
require_once 'config.inc.php';
|
|
require_once 'db.class.php';
|
|
require_once 'entete.php';
|
|
|
|
$db = new db();
|
|
print(' <br><br>
|
|
<!-- lalis Grid Section -->
|
|
|
|
<section id="content">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-12 text-center">
|
|
<h3>Gestion des votes</h3>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<ul>');
|
|
$votationsList = $db->queryVotationList();
|
|
foreach($votationsList as $votation)
|
|
{
|
|
print'<a href="' . $vote_url . '"saisieVotes.php?idVotation=' . $votation["id"] . '>' . $votation["libelle"] . '</a>';
|
|
}
|
|
print(' </ul>
|
|
</div>
|
|
</div>
|
|
</section>');
|
|
|
|
require_once './footer.html';
|
|
?>
|