Hallo Leute hab ein kleines Problem.
Aber weiß nicht wie ich es lösen soll D:
Und dann kommt ständig die Fehlermeldung:
Woran liegt das ?
mfG
Aber weiß nicht wie ich es lösen soll D:
HTML:
<form method="post" action="?s=mbo_edit">
<select style="width:140px; " class="login_input" name="team_daily">
<option id="1.0">2 Stunden</option>
<option id="1.1">2 1/2 Stunden</option>
<option id="1.2">3 Stunden</option>
<option id="1.3">3 1/2 Stunden</option>
<option id="1.4">4 Stunden</option>
<option id="1.5">6 Stunden</option>
</select>
<input type="submit" value="Berechnen" name="rechnen">
</form>
PHP:
if(isset($_POST['rechnen'])) {
if($_POST['team_daily'] == '1.0') {$stunden = 2.0;}
if($_POST['team_daily'] == '1.1') {$stunden = 2.5;}
if($_POST['team_daily'] == '1.2') {$stunden = 3.0;}
if($_POST['team_daily'] == '1.3') {$stunden = 3.5;}
if($_POST['team_daily'] == '1.4') {$stunden = 4.0;}
if($_POST['team_daily'] == '1.5') {$stunden = 6.0;}
echo $stunden;
}
Und dann kommt ständig die Fehlermeldung:
Code:
Notice: Undefined variable: stunden in C:\xampp\htdocs\ipanel\pages\mbo_edit.php on line 18
Woran liegt das ?
mfG