site-accueil-insa/sponsors.php
2018-07-06 19:34:49 +02:00

13 lines
268 B
PHP
Executable file

<?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
?>