forked from rebillar/site-accueil-insa
11 lines
No EOL
273 B
PHP
Executable file
11 lines
No EOL
273 B
PHP
Executable file
<?php
|
|
ob_start(); // Start reading html
|
|
?>
|
|
<div class="inner">
|
|
<h1>Le WINI</h1>
|
|
</div>
|
|
<?php
|
|
$pageContent = ob_get_clean(); // Store html content in variable
|
|
$pageTitle = "WINI";
|
|
include("includes/template.php"); // Display template with variable content
|
|
?>
|