HTTP Response Headers in PHP
Using PHP, you can send
HTTP response headers to the browser.
This is done using the
header function:
<?php
header('Content-Type: text/html');
?>
Set the Content-Type header
to the value 'text/plain'.
Come up with your own header, starting
its name with the letter 'X'.
Set this header.