site-accueil-insa/photos.php
2019-08-28 12:59:43 +02:00

9 lines
233 B
PHP

<?php
ob_start(); // Start reading html
?>
EN MAINTENANCE !
<?php
$pageContent = ob_get_clean(); // Store html content in variable
$pageTitle = "Photos";
include("includes/template.php"); // Display template with variable content
?>