diff --git a/bdd.sql b/bdd.sql
index b8a9213..30544fb 100644
--- a/bdd.sql
+++ b/bdd.sql
@@ -33,8 +33,8 @@ create table reservation
personne char(8) REFERENCES utilisateur,
HEUREDEBUT char(5),
HEUREFIN char(5),
- UNIQUE(moment,personne),
- PRIMARY KEY(reserve,moment));
+ /*UNIQUE(moment,HEUREDEBUT),*/
+ PRIMARY KEY(reserve,moment,HEUREDEBUT));
/* Insertions des donnees dans la BDD */
diff --git a/html/ajoutReservation.php b/html/ajoutReservation.php
index 717c8df..cc295b2 100644
--- a/html/ajoutReservation.php
+++ b/html/ajoutReservation.php
@@ -48,7 +48,7 @@
$requete = "INSERT INTO reservation VALUES($banc,'$date','$login','$heure','$heurefin')";
$exec_requete = mysqli_query($db,$requete);
-
+ echo "";
}else{
echo "Pas marché";
}
diff --git a/html/dispoCreneau.php b/html/dispoCreneau.php
new file mode 100644
index 0000000..c96c0da
--- /dev/null
+++ b/html/dispoCreneau.php
@@ -0,0 +1,15 @@
+
diff --git a/html/login.php b/html/login.php
index 1dd3da4..ecbcf5c 100644
--- a/html/login.php
+++ b/html/login.php
@@ -21,6 +21,7 @@ if(isset($_POST['identifiant']) && isset($_POST['mdp'])){
//header('Location : index.html');
}
}else{
+ /* Ne devrait pas pouvoir arriver mais j'ajoute une double sécurité */
echo "";
//header('Location : index.html');
}
diff --git a/html/menu.php b/html/menu.php
index 137adff..df04cc0 100644
--- a/html/menu.php
+++ b/html/menu.php
@@ -22,10 +22,11 @@
echo "";
//header('Location : index.html');
}
- }
- if(isset($_SESSION['identifiant'])){
+ }elseif(isset($_SESSION['identifiant'])){
$identifiant = $_SESSION['identifiant'];
echo "Bonjour $identifiant, vous êtes connecté
";
+ }else{
+ echo "";
}
?>