site-accueil-insa/planning.php

73 lines
1.9 KiB
PHP
Raw Normal View History

2022-01-19 22:26:58 +01:00
<?php
2020-09-19 16:08:07 +02:00
ob_start(); // Start reading html
include "script/db.php";
if(isset($_GET['planning']) AND !empty(['planning']))
{
$planning = (int) htmlspecialchars($_GET['planning']);
}
2020-09-19 16:08:07 +02:00
?>
<main>
<div class="box-jaune">
<span class="corners corners-top"></span>
<span class="corners corners-bottom"></span>
<div class="title">Planning</div>
<span class="circles circles-top"></span>
<span class="circles circles-bottom"></span>
</div>
2020-09-19 16:08:07 +02:00
<?php
if(isset($planning)) {
?>
<table>
<tr class="tr-th">
<th width="12.5%">Heures</th>
<th width="12.5%">Lundi</th>
<th width="12.5%">Mardi</th>
<th width="12.5%">Mercredi</th>
<th width="12.5%">Jeudi</th>
<th width="12.5%">Vendredi</th>
<th width="12.5%">Samedi</th>
<th width="12.5%">Dimanche</th>
</tr>
<tr class="tr-td">
<td>
<?php
for($i=8;$i<=22;$i++) {
?>
<div style="height: <?= 100/15 ?>%;" class="hours">
<?= $i ?>
</div>
<?php
}
?>
</td>
<?php
for($day=1;$day<=7;$day++) {
echo "<td>";
$req1 = $db->prepare('SELECT title, description, color, length FROM planning_insa WHERE day = ? AND num_planning = ? ORDER BY order_start ASC');
$req1->execute(array($day, $planning));
while($r1 = $req1->fetch()) {
?>
<div style="background-color: <?= $r1['color'] ?>; height: <?= $r1['length'] ?>%; <?php if($day == 7) { echo "border-right: 4px solid black;"; } ?>" class="content">
<span><?= $r1['title'] ?></span>
</div>
<?php
}
echo "</td>";
}
?>
</tr>
</table>
<?php
}
?>
</main>
2020-09-19 16:08:07 +02:00
<?php
2022-01-19 22:26:58 +01:00
$infopage = ["", "Planning", ob_get_clean(), "", "planning"]; //relativepath, pagetitle, pagecontent, pagescript, pagename | cf structure/template.php ligne 2 à 6
include("structure/template.php");
?>