site-accueil-insa/glissefondor.php
2019-06-08 13:00:46 +02:00

11 行
無檔案結尾符
306 B
PHP
可執行檔

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