<?php
header("Content-Type: text/plain");
foreach (apache_request_headers() as $name => $value) {
    echo "$name: $value\n";
}
?>
