Hallo. Ich schreibe morgen in Informatik eine Klausur und wollt euch fragen wo in diesen zwei HTML's der Fehler steckt?
<html>
<head>
</head>
<body>
<form method="post" action="bsp.php">
<input type="text" name="wert">
</br>
<input type="checkbox" name="einheit" value="km"> km
</br>
<input type="checkbox" name="einheit" value="sm"> sm
<input type="submit" name="absenden">
</body>
</html>
<html>
<head>
</head>
<body>
<?php echo("hallo");
$wert=$_POST['wert'];
$einheit=$_POST['einheit'];
if($einheit=="km")
{$ergebnis=$wert*1,3;}
else
{$ergebnis=$wert/1,3;};
echo("$ergebnis");
?>
</body>
</html>
Wäre euch sehr dankbar für eure Hilfe.
lg