Skip to content

Instantly share code, notes, and snippets.

@co3k
Created September 21, 2011 11:19
Show Gist options
  • Save co3k/1231826 to your computer and use it in GitHub Desktop.
Save co3k/1231826 to your computer and use it in GitHub Desktop.
<html><head><title>a</title></head><body>
<?php
for ($i = 200; $i < 300; $i++) {
setcookie('example'.$i, $i.' '.date('Y-m-d H:i:s'));
var_dump('set '.$i);
}
var_dump(count($_COOKIE), $_COOKIE);
?>
</body></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment