update page now

Voting

: max(two, one)?
(Example: nine)

The Note You're Voting On

walterquez
13 years ago
Instead of this:
<?php setcookie( "TestCookie", $value, time()+(60*60*24*30) ); ?>

You can this:
<?php setcookie( "TestCookie", $value, strtotime( '+30 days' ) ); ?>

<< Back to user notes page

To Top