bifurqué depuis vergnet/site-accueil-insa
11 lignes
Pas d'EOL
280 o
PHP
Fichier exécutable
11 lignes
Pas d'EOL
280 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 = "bg_gli";
|
|
$pageTitle = "Glissefondor";
|
|
include("includes/template.php"); // Display template with variable content
|
|
?>
|