<!doctype html>
<html>
    <head>
        <title> My webbed site </title>
    </head>
    <body>
        <p> This webbed site is up on the net, as they say </p>
	<ul>
        <?php
        $headers =  getallheaders();
        foreach($headers as $key=>$val){
		echo '<li><code>' . $key . ':</code> <code>' . $val . '</code></li>';
        }
        ?>
	</ul>
    </body>
</html>
