Untitled
unknown
plain_text
3 years ago
277 B
8
Indexable
if (!isset($_COOKIE['count'])) {
echo "Welcome! This is the first time you have viewed this page.";
$cookie = 1;
setcookie("count", $cookie);
}else{
$cookie = ++$_COOKIE['count'];
setcookie("count", $cookie);
echo "You have viewed this page ".$_COOKIE['count']." times.";
}Editor is loading...