Files
exception_handler_website/error/error403.php

23 lines
257 B
PHP
Executable File

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