site-accueil-insa/blouse.php

11 lines
221 B
PHP
Raw Normal View History

2018-05-24 13:17:51 +02:00
<?php
ob_start(); // Start reading html
?>
<h1>La Blouse</h1>
<p>Blouse!</p>
<p
<?php
$pageContent = ob_get_clean(); // Store html content in variable
include("template.php"); // Display template with variable content
?>