site-accueil-insa/downloads.php
2019-06-13 11:26:30 +02:00

12 lines
No EOL
299 B
PHP
Executable file

<?php
ob_start(); // Start reading html
?>
<div class="inner">
<h1>Les Telechargements</h1>
</div>
<?php
$pageContent = ob_get_clean(); // Store html content in variable
$pageTitle = "Téléchargements";
include("includes/template.php"); // Display template with variable content
?>