site-accueil-insa/planning.php

9 lines
297 B
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
2022-06-10 01:41:26 +02:00
header('Location: construction.php');
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");
?>