site-accueil-insa/peksentard.php
2019-06-04 14:49:19 +02:00

13 lines
323 B
PHP

<?php
ob_start(); // Start reading html
?>
<h1>Peks<a id="hidea" href="peksentardhint.php">e</a>ntard</h1>
<?php
$pageContent = ob_get_clean(); // Store html content in variable
$customBackgroundId = "pek_bg.jpg";
$pageTitle = "Peksentard";
include("includes/template.php"); // Display template with variable content
?>