hopw can i print the full header that i recive from the clients browser?
is it possible to print on the client side the header that is being sent from the server?
pheader recived from client
Moderator: General Moderators
Code: Select all
<?php
$headers = apache_request_headers();
foreach ($headers as $header => $value) {
echo "$header: $value <br />\n";
}
?>apache_response_headers()
or php's
get_headers()