3 if (!isset($_COOKIE["key"])) {
4 echo "FAIL: Cookie is not set";
8 if ($_GET["key"] == $_COOKIE["key"]) {
9 $fp = fopen("../../../../resources/Ahem.ttf", "rb");
10 header("Content-type: application/octet-stream");
11 header("HTTP/1.0 200 OK");
14 echo "FAIL: Cookie: {$_COOKIE['key']}, Query: {$_GET['key']}";