17 lines
306 B
PHP
17 lines
306 B
PHP
|
<?php
|
||
|
/*
|
||
|
* MODULE DE PHP
|
||
|
* Controller page 404
|
||
|
*
|
||
|
* Copyright 2016, Eric Dufour
|
||
|
* http://techfacile.fr
|
||
|
*
|
||
|
* Licensed under the MIT license:
|
||
|
* http://www.opensource.org/licenses/MIT
|
||
|
*/
|
||
|
|
||
|
$alert = choixAlert('url_non_valide');
|
||
|
|
||
|
//appel de la vue
|
||
|
require_once(PATH_VIEWS.$page.'.php');
|