Files
php-web-doc/www/error.php
2014-03-22 06:27:05 +01:00

14 lines
264 B
PHP

<?php
include '../include/init.inc.php';
site_header();
echo '<h2>Error 404</h2>';
if ($_SERVER['REDIRECT_STATUS'] == 404) {
echo '<p>File not found: '.htmlspecialchars($_SERVER['REQUEST_URI']).'</p>';
}
else {
echo '<p>An error occured</p>';
}
site_footer();