site-accueil-insa/photosorder.php

11 lines
261 B
PHP
Raw Normal View History

2019-09-10 16:36:46 +02:00
<?php
ob_start(); // Start reading html
?>
BIENTÔT DISPONIBLE !
<?php
$pageContent = ob_get_clean(); // Store html content in variable
$pageTitle = "Commande des photos";
include("includes/template.php"); // Display template with variable content
?>
<?php