Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
...
<SCRIPT LANGUAGE="JavaScript">
function js_submit() {
var query= "?"
query+= "name="+document.phpform.Name+"&"; // für textfelder
query+= "alter="+document.phpform.Alter;
window.open("datei.php"+query, "Auswertung", "width=300,height=300");
return true;
}
</SCRIPT>
...
<FORM NAME="phpform" ...>
<INPUT TYPE="button" VALUE="Abschicken" ONCLICK="js_submit();">
</FORM>
...