Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
The problem is, I think, that you did not declare the variable connected with the input field in the parameter window (?) at the bottom. You have to write the name of the variable in the little box named "Var:"
marfirk
on (release){
myLV = new LoadVars();
myLV.namesender =_root.namesender.text;
myLV.sendAndLoad("form.php",myLV,"POST");
}
<?php
$empfaenger = "myemail@yahoo.com";
$betreff = "Neue Frage eingegangen";
$from = "From: Website <myemail@yahoo.com>";
$txt = "Name: ".$_REQUEST['namesender']."\n"; // without .utf8_decode
$txt .= "Vorname1: ".utf8_decode($_POST['MyLV'])."\n"; //with
$txt .= "Vorname: ".utf8_decode($_POST['vorname'])."\n";
$txt .= "Tel. ".utf8_decode($_POST['tel'])."\n";
$txt .= "Email: ".utf8_decode($_POST['email'])."\n";
$txt .= "Nachricht: ".utf8_decode($_POST['nachricht'])."\n";
mail($empfaenger, $betreff, $txt, $from);
?>
your_path.namesender="";
on (release){
myLV = new LoadVars();
myLV.namesender =_level0.hallo.namesender.text;
myLV.sendAndLoad("form.php",myLV,"POST");
}