Files
exception_handler_website/error/error400.php

23 lines
251 B
PHP
Executable File

<html>
<title>Bad request</title>
<body>
<?php
include("error_header.php");
echo <<<MSG
<center>
<img src="/error/error_icon.png"/>
<br/>
<strong>Bad request</strong>
</center>
MSG;
include("footer.php");
?>
</body>
</html>