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.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>...</title>
</head>
<body><?
$to="meinemail@mail.de";
if ($email=="") $subject="Feedback von unbekannt";
else $subject="Feedback von".$email;
$message="Vorname: ".$vorname."\nNachname: ".$nachname."\nE-Mail: ".$mail."\nWohnort: ".$radio."\nPostleitzahl: ".$plz."\nTelefon: ".$telefon."\nFrage: ".$frage;
$senden=mail($to,$subject,$message);
?>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>...</title>
</head>
<body><?
$from = $fromname." <".$fromaddress.">";
ini_set("sendmail_from",$from) ;
$to="meinemail@mail.de";
if ($email=="") $subject="Feedback von unbekannt";
else $subject="Feedback von".$email;
$message="Vorname: ".$vorname."\nNachname: ".$nachname."\nE-Mail: ".$mail."\nWohnort: ".$radio."\nPostleitzahl: ".$plz."\nTelefon: ".$telefon."\nFrage: ".$frage;
$senden=mail($to,$subject,$message);
?>
</body>
</html>
Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in C:\xampp\htdocs\formular\tipp.php on line 16
Du mußt schon in die php.ini einen gültigen SMTP-Server eintragen.