Skip to content

Instantly share code, notes, and snippets.

@rik
Created December 29, 2008 16:21
Show Gist options
  • Save rik/41300 to your computer and use it in GitHub Desktop.
Save rik/41300 to your computer and use it in GitHub Desktop.
<?php
setcookie('unsafe', 'true');
setcookie('safe', 'true', 0, '', '', '', TRUE);
if ($_COOKIE['unsafe'])
echo 'unsafe<br>';
if ($_COOKIE['safe'])
echo 'safe<br>';
?>
<script>
if (/ safe/.test(document.cookie))
document.write('FAIL');
else
document.write('PASS');
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment