Hi erstmal , Ich habe hier ein problem :
Also ich habe hier einen Counter und möchte da Cookies reinbringen ... die so ca. ne Stunde halten aber wie mach ich das ?
jaja setcookie() aber ich bekomme das einfach nicht hin ich hab schon vieles versucht aber ich brauch jetzt mal hilfe von Profis...
COUNTER :
	
Kann mir da bitte jemand Cookies reinmachen ?? 
thx
					Also ich habe hier einen Counter und möchte da Cookies reinbringen ... die so ca. ne Stunde halten aber wie mach ich das ?
jaja setcookie() aber ich bekomme das einfach nicht hin ich hab schon vieles versucht aber ich brauch jetzt mal hilfe von Profis...
COUNTER :
PHP-Code:
	
	
<?php
$countfile = "count.dat";
if(! file_exists($countfile)){
   $fd = fopen($countfile,"w+"); 
   $count=0;
   } else {
   $fd = fopen($countfile,"r+");  
   $count = fgets($fd,100);
   if (! $count)
      $count=0;
   }
rewind($fd);
$count++;
fwrite ($fd, $count);  
fclose ($fd);
echo "<center>Sie sind der <b>" . $count . ".</b> Besucher</center>";
?>
thx
 
          
 
							
						
Kommentar