Anyone know how to pass a custom Header Response Reason to a client
I can successfully pass the response Code I want I just want the reason to be different from what Apache sets.
Example of what I am doing is:
<?PHP
header("HTTP/1.1 508 Custom Response Here");
exit;
?>
Seems to me that this worked in PHP3 maybe I am missing someting.
BTW the code above passes this to the client
HTTP/1.1 508 unused.....
when i want it to say
HTTP/1.1 508 Custom Response Here....
Thanks