forked from keany-albertini/reservation-salles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
planing.php
60 lines (56 loc) · 2.07 KB
/
planing.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
session_start();
include("functions.php");
?>
<!DOCTYPE html>
<html>
<?php
require_once('functions.php');
require_once('pdo.php');
$title = 'planing';
require_once('templates/head.php');
?>
<body>
<?php require_once('templates/header.php') ?>
<main>
<article class="contenu_planning">
<div class="tableau">
<table>
<thead>
<h1> Planning réservation tables </h1>
</thead>
<tbody>
<tr>
<th> Semaine numéro ? </th>
<td class="jour"> Lundi </td>
<td class="jour"> Mardi </td>
<td class="jour"> Mercredi </td>
<td class="jour"> Jeudi </td>
<td class="jour"> Vendredi </td>
</tr>
<?php
for($heure = 8 ; $heure <= 19 ; $heure++) // boucle pour les lignes des heures
{
echo '<tr></tr>';
for($jour = 0 ; $jour <= 5 ; $jour++) // boucle pour les crénaux de chaque jour
{
if($jour == 0)
{
echo '<th>' .$heure.'h </th>';
}
else{
checkHoraire($jour,$heure) ;
}
}
}
?>
</tbody>
</table>
</div>
</article>
</main>
<?php
require_once("templates/footer.php");
?>
</body>
</html>