You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2026-01-12 22:51:27 +03:00
git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@581 a1433add-5e2c-0410-b055-b7f2511e0802
10 lines
251 B
PHP
10 lines
251 B
PHP
<?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>
|