site-accueil-insa/peksentard.php
2019-05-18 17:58:23 +02:00

10 lines
272 B
PHP

<?php
ob_start(); // Start reading html
?>
<h1>Peksentard</h1>
<?php
$pageContent = ob_get_clean(); // Store html content in variable
$customBackgroundId = "bg_pek";
$pageTitle = "Peksentard";
include("includes/template.php"); // Display template with variable content
?>