aktuelle.kurse/m133/Modul_Unterlagen_133_VOR/08-Uebungen/03 PHP Grundlagen/kapitel04/file1.php
Harald G. Mueller 28ff49e098 muh
2023-06-29 07:50:41 +02:00

15 lines
315 B
PHP

<?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);
?>