2019-08-28 12:25:14 +02:00
|
|
|
<?php
|
|
|
|
ob_start(); // Start reading html
|
|
|
|
?>
|
2019-08-28 13:04:28 +02:00
|
|
|
<body>
|
2019-08-28 12:25:14 +02:00
|
|
|
-TEXTE-
|
|
|
|
|
|
|
|
<br><br>
|
2019-08-28 13:10:04 +02:00
|
|
|
|
2019-08-28 14:24:19 +02:00
|
|
|
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSeQ6ldsTuBGNN5hnp7KP_tt2rRuvRREJMvohjwsOhXCVCnECw/viewform?embedded=true" scrolling="no" height="1400">Chargement…</iframe>
|
2019-08-28 13:10:04 +02:00
|
|
|
|
2019-08-28 12:25:14 +02:00
|
|
|
|
2019-08-28 13:04:28 +02:00
|
|
|
</body>
|
2019-08-28 12:25:14 +02:00
|
|
|
<?php
|
|
|
|
$pageContent = ob_get_clean(); // Store html content in variable
|
|
|
|
$pageTitle = "Commande";
|
|
|
|
include("includes/template.php"); // Display template with variable content
|
|
|
|
?>
|