×
Home About Us Products Services News Free Scripts Contact
news php scripts and software

PHP example - How to access information in the request header directly?


PHP - How to access information in the request header directly?

$headers = getallheaders();
foreach ($headers as $name => $content) 
{
    echo "headers[$name] = $content<br>\n";
}

Category: PHP

 
<< Go back