SiDoMan/pages/error.php

10 lines
205 B
PHP
Raw Normal View History

2020-10-24 20:28:51 +00:00
<?php
$HTML = new HTML();
$HTML->importHTML("style/default/error.html");
$HTML->setHTMLTitle("Error 404");
$HTML->build();
header("HTTP/1.0 404 Not Found");
echo $HTML->ausgabe();
?>