<pclass="lead">Below is an example form built entirely with Bootstrap’s form controls. Each required form group has a validation state that can be triggered by attempting to submit the form without completing it.</p>
</div>
you have ordered:<br>
<?php
$text="";
foreach($_SESSION["panier"]as$item){
$text.="- ".$item['quantity']." ".$item["itemName"]." which costs ";
if($item['quantity']>=16){
$text.=$item["price"]*$item["quantity"]*(1-0.16)." € (you have received a 16% discount !)<br>";
}elseif($item['quantity']>=8){
$text.=$item["price"]*$item["quantity"]*(1-0.08)." € (you have received a 8% discount !)<br>";