Code: Alles auswählen
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Neue Seite 1</title>
</head>
<body>
<form action="<?=$PHP_SELF?>" method="post">
<p> nachricht eingeben: <br />
<textarea name="nachricht" rows="10" cols="40" wrap>
</textarea><br />
<input type="submit" name="submitnachricht" value="Speichern" />
</p>
</form>
<?php
if (submitnachricht == "Speichern"){
mail("jack9027@gmx.de", "Betreff", "$nachricht");
}
?>
</body>
</html>