I'm trying to set a custom X-Powered-By header in PHP. I set it at the end of my document, and it doesnt't show up when I use cURL to see the headers.
This is a snippet of my code:
<?php
header('X-Powered-By: Riverside Rocks');
die();
?>
Is there anything I am doing wrong?