Cookie Check
Script zum testen von Cookies
|
Script: |
<?
if (!isset($_COOKIE["count"]))
{
$count =
0;
setcookie("count",
$count, time()+3600);
echo "Cookie
auf 0 gesetzt, bitte Seite aktualisieren ";
echo "<a
href=\"" . $_SERVER["PHP_SELF"]
. "\">Link</a>";
}
else
{
$count =
$_COOKIE["count"];
$count++;
setcookie("count",
$count, time()+3600);
echo "Cookie
auf $count gesetzt, bitte Seite aktualisieren ";
echo "<a
href=\"" . $_SERVER["PHP_SELF"]
. "\">Link</a>";
}
?>
|
|