blob: cff18a07c5da40ad6c80e335dabc9e7a175ba905 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?
/* --PAGE NOT FOUND - 404 -- */
function get_404($working_path, $wrong_folder){
include("404.php");
exit;
}
function failure($reason){
echo "A 404 error occurred. <br>";
echo $reason;
exit;
}
|