forked from rebillar/site-accueil-insa
14 lines
268 B
PHP
14 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
|
||
|
?>
|