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.
on (release) {
if (neu != \"\" ) {
loadVariablesNum(\"http://www.blabla.de/neuertext.php\", 0, \"POST\");
}
}
<?php
$db=\"news.txt\";
//legt datei an falls sie noch nicht existiert
if(!file_exists($db)) {
$fp=fopen($db,\"w\");
fclose($fp);
}
$eintrag=$neu;
$fp=@fopen($db, \"a+\");
fwrite($fp,$eintrag.\"\n\");
fclose($fp);
?>