I was looking through some Google articles and some Firefox developer areas and found that there was an option you can set to not let some sites track your information.
I looked into this and did some google searches for Developers and couldn't manage to find any information on how to detect whether or not a user has set this in their browser.
Is it sent in a POST
request or in any type of request? Does it come in the User agent? I just wanted to know how to manage this and not store their ips
for login as an example.
Look for Settings on the left and select Privacy and Security. In the center of your screen, click Cookies and other site data. To turn off tracking in Chrome, toggle the setting off for Send a “Do Not Track” request with your browsing traffic.
On your computer, open Chrome. Settings. Cookies and other site data. Turn Send a "Do not track" request with your browsing traffic on or off.
Do Not Track (DNT) is a formerly official HTTP header field, designed to allow internet users to opt-out of tracking by websites—which includes the collection of data regarding a user's activity across multiple distinct contexts, and the retention, use, or sharing of data derived from that activity outside the context ...
It's sent as an HTTP header:
function dnt_enabled()
{
return (isset($_SERVER['HTTP_DNT']) && $_SERVER['HTTP_DNT'] == 1);
}
if dnt_enabled() {
// do stuff...
}
Or, if you're using PHP 7:
function dnt_enabled(): bool
{
return (bool)$_SERVER['HTTP_DNT'] ?? false;
}
$do_not_track_requested = ! empty( $_SERVER[ 'HTTP_DNT' ] );
All HTTP headers are present in $_SERVER
, prefixed with HTTP_
.
https://www.php.net/manual/en/reserved.variables.server.php#89567
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With