waterin.africa/src/index.php
Constantin Simonis 4326b9dc58
All checks were successful
build / build (push) Successful in 47s
whoops
2025-01-20 15:23:03 +01:00

33 lines
627 B
PHP

<?php
$statusCodes = [
204 => 'No Content',
301 => 'Moved Permanently',
400 => 'Bad Request',
401 => 'Unauthorized',
402 => 'Payment Required',
403 => 'Forbidden',
404 => 'Not Found',
410 => 'Gone',
423 => 'Locked',
501 => 'Not Implemented',
];
$codes = array_keys($statusCodes);
$code = $codes[random_int(0, count($codes) - 1)];
$codeString = $statusCodes[$code];
$headline = $code.' '.$codeString;
http_response_code($code);
?>
<html>
<head><title><?= $headline ?></title></head>
<body>
<center><h1><?= $headline ?></h1></center>
<hr><center>Nestle Gmbh</center>
</body>
</html>