7 lines
140 B
PHP
7 lines
140 B
PHP
|
<?php
|
||
|
$HTML->setHTMLTitle("Seite nicht gefunden");
|
||
|
|
||
|
$HTML->build();
|
||
|
header("HTTP/1.0 404 Not Found");
|
||
|
echo $HTML->ausgabe();
|
||
|
?>
|