<?php
if(!isset($_COOKIE['ciasteczko'])){
$exist = false;
setcookie('ciasteczko', 1, time()+24*3600);
}
else{
$exist = true;
}
?>
<!DOCTYPE HTML>
<html lang 'pl'>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<title>strona</title>
</head>
<body>
<?php
if($exist)
{
echo "Ciasteczko istnieje";
}
else
{
echo "Brak ciastecza";
}
?>
</body>
</html>
Kod z wczoraj :)