forked from rebillar/site-accueil-insa
12 lines
275 B
PHP
Executable file
12 lines
275 B
PHP
Executable file
<?php
|
|
ob_start(); // Start reading html
|
|
?>
|
|
<div class="inner">
|
|
<h1>Le Parrainage</h1>
|
|
</div>
|
|
|
|
<?php
|
|
$pageContent = ob_get_clean(); // Store html content in variable
|
|
$pageTitle = "Parrainage";
|
|
include("includes/template.php"); // Display template with variable content
|
|
?>
|