
Simpler Counter
Ein Beispiel für einen einfachen Counter ohne IP sprerre.
|
|
<?php
$handle = @fopen("counter.txt", "r");
if ($handle) {
$inhalt = fgets($handle, 10) + 1;
fclose($handle);
} else {
$inhalt = 1;
}
$handle = fopen("counter.txt", "w+");
fputs($handle, $inhalt);
fclose($handle);
echo $inhalt;
?>
|
T: 34979 G: 7 H: 10 T: +4 O: 6
|
|