Example #1
0
<?php

if (isset($_GET['verwijder'])) {
    bestellingService::verwijderBestelling($_GET['verwijder']);
}
?>
        <div class="wrapper clearfix">
            <div class="txtC">
                <h1>Besteloverzicht</h1>
            </div>
            <div class="wrapper clearfix txtC">
<?php 
$nextdatum = "";
$arrBestellingen = bestellingService::getAllBestellingen();
foreach ($arrBestellingen as $bestelling) {
    $klantID = $bestelling->KlantID;
    $klant = klantService::getKlantFromId($klantID);
    $dbDatum = $bestelling->Besteldatum;
    $datum = date('d-m-Y', strtotime($dbDatum));
    $BestelID = $bestelling->BestelID;
    $klantnaam = $klant->Naam . " " . $klant->VNaam;
    if ($nextdatum == "") {
        print $datum . "<hr/>";
    } else {
        if ($nextdatum != $dbDatum) {
            print "<hr/>" . $datum . "<hr/>";
        }
    }
    print "<div class='innercontainer txtL'>&nbsp;";
    print "<dl><dt>Bestelling voor " . $klantnaam . " op " . $datum . "</dt>";
    $totPrijs = $bestelling->Prijs;