Cookies Zähler

Erzeugung von Cookies

<?php
 if(!(isset($_COOKIE["count"]))){
   $count=1;
   setcookie("count", $count, time()+60);
  }
  else {
   $count=$_COOKIE["count"]+1;
   setcookie("count", $count, time()+60);
   }
?>
<html>
<head>
</head>
<body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000">
 
<p>Willkommen auf meiner Seite</p>
<?php
  echo "Sie besuchen diese Seite zum ".$count.". Mal.";
?>
 
</body>
</html>