Skip to content

Commit

Permalink
ff
Browse files Browse the repository at this point in the history
  • Loading branch information
GreenBloodDev committed Sep 6, 2023
1 parent d4bed65 commit c21d620
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/quatalumsatz.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Quatalumsätze</title>
<link href="../pictures/sunlight.png" rel="icon">
<link href="../css/style.css" rel="stylesheet">
</head>
<body>

<?php

$umsaetze = array(12000, 14000, 10000, 15000);

for ($i = 0; $i < count($umsaetze); $i++) {
echo "Quatal " . ($i + 1) . ": " . $umsaetze[$i] . "€<br>";
}

?>

</body>
</html>

0 comments on commit c21d620

Please sign in to comment.