You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
$count = 1;
|
|
if (isset($_COOKIE['count'])) {
|
|
$count = $_COOKIE['count'] + 1;
|
|
}
|
|
setcookie('count', $count);
|
|
?><html>
|
|
<head><title>Cookie Counter</title></head>
|
|
<body><?php print 'Count: ' . $count; ?></body>
|
|
</html>
|