Hallo RT, ich bin gerade etwas dabei Php zu lernen und wollte mal etwas mit php machen.
Alles klappt super, aber dennoch werden mir die Fehlern angezeigt:
Notice: Undefined index: kontostand in C:\xampp\htdocs\index.php on line 2
Notice: Undefined index: produkt in C:\xampp\htdocs\index.php on line 3
Spoiler anzeigen
<?
$kontostand = $_POST['kontostand'];
$produkt = $_POST['produkt'];
$fehlgeld = $produkt - $kontostand;
?>
<html>
<head>
<meta charset="utf8">
</head>
<body>
<form method="post">
Kontostand : <input type="text" name="kontostand"/>
</br>
<? if(isset($_POST["ausfuehren"])) {
echo 'Du hast momentan '.$kontostand.' Euro auf dem Konto';
}
?>
</br>
</br>
Produkt : <input type="text" name="produkt"/>
</br>
<? if(isset($_POST["ausfuehren"])) {
echo 'Das Produkt kostet '.$produkt.' Euro.';
}
?>
</br>
</br>
<? if(isset($_POST["ausfuehren"])) {
echo 'Dir fehlen '.$fehlgeld.' Euro.';
}
?>
</br>
<input type="submit" value="senden" name="ausfuehren" />
</form>
</body>
</html>
Danke für eure Hilfe