In Java Script gibts den Befehl
On Click!
Wie heiĂźt das in PHP oder wie funktioniert das ...
Welche funktion...
Danke fĂĽr eure Antwort.
<html>
<head>
<title>Formular</title>
</head>
<body>
<table>
<form name="liste" method="post" action="<?=$PHP_SELF?>">
<table>
<tr>
<td>
<?php
//dient nur zum Testen des Formulars, damit die Variable einen Wert hat
$STKfeuer = 1;
if($STKfeuer != "") {
echo ($STKfeuer. " Artikel ".$STKfeuer);
}
else { echo ("Fehler blablabla"); }
?>
</td>
</tr>
<tr>
<td><input type="submit" name="Abschicken" value="Abschicken" /></td>
</tr>
</table>
</form>
<?php
if (isset ($Abschicken)) {
mail("[email protected]", "Formulareingabe", $STKfeuer, "");
}
?>
</body>
</html>
mail("[email protected]", "Formulareingabe", ($var1, $var2, $var3 und so weiter),"");
Mitglieder in diesem Forum: 0 Mitglieder und 3 Gäste