Exemplo n.º 1
0
<?php

require_once "business/10-0.boekservice.class.php";
BoekService::verwijderBoek($_GET["id"]);
header("location: 10-0-toonalleboeken.php");
ewit(0);
<?php

//verwijderboek.php
require_once 'business/BoekService.php';
/* 
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
$boekSvc = new BoekService();
$boekSvc->verwijderBoek($_GET["id"]);
header("location: toonalleboeken.php");
exit(0);