Skip to content

Commit

Permalink
fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
GreenBloodDev committed Sep 6, 2023
1 parent b164abd commit a710428
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/formular.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@

<?php

$filmlänge = 120;
$filmlaenge = 120;
$zuschlag = 0.5;

while($filmlänge <= 180){
echo "$filmlänge Min $zuschlag EUR<br>";
$filmlänge = $filmlänge + 15;
while($filmlaenge <= 180){
echo "$filmlaenge Min $zuschlag EUR<br>";
$filmlaenge = $filmlaenge + 15;
$zuschlag = $zuschlag + 0.5;
}
echo "<br>";
Expand Down

0 comments on commit a710428

Please sign in to comment.