site-accueil-insa/commandetest.php
2019-08-28 19:12:14 +02:00

27 lines
722 B
PHP

<?php
ob_start(); // Start reading html
?>
<body>
-TEXTE- (tarifs, règles de commande, etc...)
<br><br>
<?php
$is_image = false;
$link = "phoneorder.php";
$icon = "fa fa-mobile-phone";
$text = "Commander depuis téléphone";
include("includes/main_button_template.php");
$link = "computerorder.php";
$icon = "fas fa-desktop";
$text = "Commander depuis ordinateur";
include("includes/main_button_template.php");
?>
</body>
<?php
$pageContent = ob_get_clean(); // Store html content in variable
$pageTitle = "Commande";
include("includes/template.php"); // Display template with variable content
?>