This page contains a php script that will run to check whether or not your web browser has the Do Not Track (‘DNT’) bit on or off.

Find the script here

<?php
if (getenv("HTTP_DNT") == "1") {
    echo '<strong>Do Not Track is on!</strong>';
}
else {
    echo '<strong>Do Not Track is off!</strong>';
}
?>

2 Comments

    1. The source code is now on the page above, just click ‘show me the source’. Also for anyone else commenting please leave your real name and email address, I like to have your email so you can be notified if I respond.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.