Text Counter
Ein ganz simpler Gesamtcounter ohne IP-Sperre
|
Script: |
<?php
$datei = fopen("counter.txt","r+");
$counterstand =
fgets($datei,
10);
if($counterstand ==
"")
{
$counterstand
= 0;
}
$counterstand++;
echo $counterstand;
rewind($datei);
fwrite($datei,
$counterstand);
fclose($datei);
?>
|
|