kleiner klickcounter

Bloged in Code Snippets von melistik Montag September 18, 2006
PHP:
  1. $fp = fopen("count.txt","r");
  2. $count = fread ($fp, filesize ("count.txt"));
  3. fclose($fp);
  4. //zählerstand um eins erhöhen
  5. $count++;
  6. $fp = fopen("count.txt","w");
  7. // wird in die count.txt eingeschrieben
  8. fwrite($fp, $count);
  9. fclose($fp);
  10. echo "Load $count times";

Einen Kommentar hinterlassen


15 queries. 0.253 seconds.
Powered by WordPress