logo

scripts

A bunch of scripts, some to be moved to their own repository
commit: aee153461d244830001696ba544c26a01578aab4
parent: 120c0609ac9836401483cadd7097e673cca3d9bd
Author: lanodan <haelwenn.monnier@gmail.com>
Date:   Sat, 14 Jun 2014 18:33:36 +0200

Error 418: I'm a teapot

Diffstat:

A418.php16++++++++++++++++
1 file changed, 16 insertions(+), 0 deletions(-)

diff --git a/418.php b/418.php @@ -0,0 +1,16 @@ +<?php +header("HTTP/1.0 418 I'm a teapot"); +?> +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"/> + <title>418 I'm a teapot</title> + </head> + <body> + <h1>I'm a teapot</h1> + <p>The teapot failed to get you some coffee.</p> + <hr> + <address><?=$_SERVER["SERVER_SIGNATURE"]?></address> + </body> +</html>