Counterlos
Das Script erzeugt einen Counter ohne Ip Sperre
|
Script: |
<?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;
?>
|
|