site-accueil-insa/blouse.php
2019-05-24 20:58:42 +02:00

13 lines
No EOL
279 B
PHP
Executable file

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