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

27 lines
691 B
PHP

<?php
ob_start(); // Start reading html
?>
<body>
-TEXTE- (tarifs, règles de commande, etc...)
<br><br>
<?php
$link = "phoneorder.php";
$icon = "fas fa-mobile-alt";
$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
?>