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/gestionsite/saisieVotation.php

36 lines
606 B
PHP
Raw Normal View History

2022-09-15 11:44:34 +02:00
<?php
2022-09-15 12:42:52 +02:00
require_once '../session_init.php';
2022-09-15 11:44:34 +02:00
require_once 'config.inc.php';
require_once 'db.class.php';
require_once 'entete.php';
require_once 'fonctions.inc.php';
$path = $_SERVER["PHP_SELF"];
print('<br><br>
<!-- lalis Grid Section -->
<section id="content">
2022-09-15 12:35:54 +02:00
<div class="container">');
2022-09-15 11:44:34 +02:00
print(' <div class="row">
<div class="col-lg-12 text-center">
<h3>Nouvelle votation</h3>
<h4>');
2022-09-15 12:37:09 +02:00
if (array_key_exists("titre", $_GET))
2022-09-15 11:44:34 +02:00
{
2022-09-15 12:42:52 +02:00
var_dump($_get);
}else
{
votationForm($path);
2022-09-15 11:44:34 +02:00
}
2022-09-15 12:42:52 +02:00
2022-09-15 11:44:34 +02:00
print(' </div>
</div>
</form>
</div>
</section>');
require_once("footer.html");
?>