Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Ganz klar PHP.fawkes schrieb:Welcher code is besser javascript oder PHP???
<?php
$datei = fopen("counter12.txt","r+");
$counterstand = fgets($datei);
if($counterstand == "")
{
$counterstand = 0;
}
$counterstand++;
echo $counterstand;
rewind($datei);
fwrite($datei, $counterstand);
fclose($datei);
?>
<?php
$zahl = file_get_contents('counter.txt');
echo ++$zahl;
file_put_contents('counter.txt', $zahl);
unset($zahl);
?>
Das spielt doch auch keine Rolle ob sie von ihm sind, solange er sie versteht und auch erklären kann ist das in Ordnung. Ich bediene mich auch an den Codebeispielen anderer und schreibe nicht immer alles neu nur um hier was zu zeigen. ;)TomD schrieb:webi, ich schätze, mindestens eines (wenn nicht sogar beide) codes sind nicht von dir, denn ...