<?php

header('Content-Type: text/plain');

foreach($_SERVER as $k => $v)
{
	if ( strpos($k, 'HTTP_', 0) !== false )
	{
		print $k . "\t\t" . $v . "\n";
	}
}
