site-accueil-insa/parrainage.php

13 lines
275 B
PHP
Raw Normal View History

2018-03-25 13:22:28 +02:00
<?php
2018-03-25 14:19:53 +02:00
ob_start(); // Start reading html
2018-03-25 13:22:28 +02:00
?>
<div class="inner">
2018-06-05 20:03:33 +02:00
<h1>Le Parrainage</h1>
</div>
2018-03-25 13:22:28 +02:00
<?php
2018-03-25 14:19:53 +02:00
$pageContent = ob_get_clean(); // Store html content in variable
2018-06-05 20:03:33 +02:00
$pageTitle = "Parrainage";
include("includes/template.php"); // Display template with variable content
2018-06-09 15:18:02 +02:00
?>