mirror of
https://github.com/php/web-doc.git
synced 2025-08-13 14:40:31 +00:00
14 lines
264 B
PHP
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(); |