Hallo...
Ich bin gerade am PHP lernen, bin gerade am Kapitel Dateien schreiben angekommen und schon kommt die erste
Fehlermeldung:
Hier der Quelltext:
<?php$datei = fopen("counter.txt","r+");
$counterstand = fgets($datei, 10);
if($counterstand == ""){ $counterstand = 0;}
$counterstand++...