1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
|
<?
$file = fopen("file.txt","r+");
$counterstand = fgets($file, 10);
if ($counterstand == "")
{
$counterstand = 0;
}
$counterstand++;
echo "Du bist Besucher Nr.: $counterstand";
rewind($file);
fwrite($file, $counterstand);
fclose($file);
?>
|