aktuelle.kurse/old_m133/4_Modulinhalte_und_Uebungen/00-Anwendungen-Beispiele-Uebungen/kapitel04/file1.php

15 lines
315 B
PHP
Raw Normal View History

2022-02-23 22:44:33 +01:00
<?php
# Quelle: http://www.schattenbaum.net/php/
$datei = fopen("counter.txt","r+");
$counterstand = fgets($datei, 10);
if($counterstand == "")
{
$counterstand = 0;
}
$counterstand++;
echo $counterstand;
rewind($datei);
fwrite($datei, $counterstand);
fclose($datei);
?>