site-accueil-insa/error.php

10 lines
335 B
PHP
Raw Normal View History

2022-06-14 14:07:32 +02:00
<?php
ob_start(); // Start reading html
?>
<main>
2022-06-16 17:00:38 +02:00
<img src="assets/img/error.jpg" style="margin-top: 50px;width:50vw;">
2022-06-14 14:07:32 +02:00
</main>
<?php
2022-06-16 17:00:38 +02:00
$infopage = ["", "Erreur", ob_get_clean(), "", "erreur"]; //relativepath, pagetitle, pagecontent, pagescript, pagename | cf structure/template.php ligne 2 à 6
2022-06-14 14:07:32 +02:00
include("structure/template.php");
?>