<?php

$status = $_SERVER['REDIRECT_STATUS'];
$codes = array(
        403 => array('403 Forbidden', 'The server has refused to fulfill your request (Bagus Hanindhito File Server).'),
        404 => array('The Link Is Lost In Peace', 'The document/file requested was not found a.k.a. 404 Not Found. (Bagus Hanindhito File Server) '),
        405 => array('405 Method Not Allowed', 'The method specified in the Request-Line is not allowed for the specified resource.(Bagus Hanindhito File Server)'),
        408 => array('408 Request Timeout', 'Your browser failed to sent a request in the time allowed by the server.(Bagus Hanindhito File Server)'),
        500 => array('500 Internal Server Error', 'The request was unsuccessful due to an unexpected condition encountered by the server.(Bagus Hanindhito File Server)'),
        502 => array('502 Bad Gateway', 'The server received an invalid response from the upstream server while trying to fulfill the request.(Bagus Hanindhito File Server)'),
        504 => array('504 Gateway Timeout', 'The upstream server failed to send a request in the time allowed by the server.(Bagus Hanindhito File Server)')
        );
        
$title = $codes[$status][0];
$message = $codes[$status][1];
if ($title == false || strlen($status) != 3) {
    $message = 'Please supply a valid status code.';
}

echo '<p><h1>' . $title . '</h1></p>' . 
     '<p>' . $message . '</p>'; 

 
?> 