forked from rebillar/site-accueil-insa
27 lines
722 B
PHP
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
|
|
?>
|