site-accueil-insa/sponsors.php
2018-06-15 11:40:33 +02:00

13 lines
268 B
PHP

<?php
ob_start(); // Start reading html
?>
<h1>Sponsors</h1>
<p>
Apparemment on a des sponsors.
</p>
<?php
$pageContent = ob_get_clean(); // Store html content in variable
$pageTitle = "Info";
include("template.php"); // Display template with variable content
?>