404CTRL.php
Gesponsorde koppelingen
PHP script bestanden
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
class notFoundCTRL{
private $title, $h1;
function __construct(){
$this->title = '404 Pagina niet gevonden!';
$this->h1 = '404 Fout: Pagina niet gevonden!';
}
public function pageControl(){
require_once 'view/404.php';
}
}
?>
class notFoundCTRL{
private $title, $h1;
function __construct(){
$this->title = '404 Pagina niet gevonden!';
$this->h1 = '404 Fout: Pagina niet gevonden!';
}
public function pageControl(){
require_once 'view/404.php';
}
}
?>