Schöner Thread!!! Seh ich jetzt erst!
Also mein Prob:
Ich hab wohl das billigste PHP-Counter Script was möglich ist gemacht:
PHP-Code:
<?
$datei = fopen("counter.txt","r+");
$counterstand = fgets($datei, 10);
if($counterstand == "")
  {
  $counterstand = 0;
  }
$counterstand++;
echo $counterstand;
rewind($datei);
fwrite($datei, $counterstand);
fclose($datei);
?>
Jetzt will ich eine Reload - Sperre (geht das überhaupt mit php) und eine User - SPerre (also , dass ein user nur einmal am tag gezählt wird)
Das mit der User - Sperre muss ich wohl mit Cookies regeln. (Mit Cookies kenn ich mich blos noch nicht aus. )