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.
Was verstehst du unter "entschärfen"?
[...]
<form action="auswertung.php" method="post">
Eingabe 1: <input type="text" name"Feld1" /><br />
Eingabe 2: <input type="text" name"Feld2" /><br />
</form>
[...]
<?php
$feld1 = $_POST['Feld1'];
$feld2 = $_POST['Feld2'];
// Hier würde die Auswertung hinkommen
//z.B. mail()...
?>