site-accueil-insa/commandetest.php

34 lines
790 B
PHP
Raw Normal View History

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 19:12:14 +02:00
-TEXTE- (tarifs, règles de commande, etc...)
2019-08-28 12:25:14 +02:00
<br><br>
2019-08-28 13:10:04 +02:00
2019-08-28 19:12:14 +02:00
<?php
2019-08-28 19:25:15 +02:00
2019-08-28 19:12:14 +02:00
$link = "phoneorder.php";
2019-08-28 19:26:19 +02:00
$icon = "fas fa-mobile-alt";
2019-08-28 19:12:14 +02:00
$text = "Commander depuis téléphone";
include("includes/main_button_template.php");
2019-08-28 13:10:04 +02:00
2019-08-28 19:31:16 +02:00
$link = "";
$icon = "fas fa-arrow-up";
$text = "";
include("includes/main_button_template.php");
2019-08-28 19:12:14 +02:00
$link = "computerorder.php";
$icon = "fas fa-desktop";
$text = "Commander depuis ordinateur";
include("includes/main_button_template.php");
?>
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
?>