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

11 lignes
Pas d'EOL
284 o
PHP
Fichier exécutable

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