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.
Ich nutze meist Notepad++, viele empfehlen auch MS Visual Code, beides Freewareprogrammiere immer einfach im Text Editor.
Es gibt doch aber bestimmt kostenlose Editoren, die vielleicht einige Vorteile hätten.
$url = 'http://www.test_server.com/sample.txt';
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, false);
$data = curl_exec($curl);
curl_close($curl);
file_put_contents("myfile.txt",$data);
Ok, wo bin ich denn da wieder hingeraten :-) Sorry.Ähmmm, 7. Juni 2020, da ist wohl jeder Lösungsansatz nicht mehr erforderlich.