jujuvier: ist mein quelltext so richtig

Beitrag lesen

<!DOCTYPE HTML>
<html lang=de>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="gewinnrechner_klausur1.css">
</head>
<body>
<div id="inhalt">

<?php

$stuck=$_POST[stück];
$preis=$_POST[preis];
$fix=$_POST[fix];
$variable=$_POST[variable];

echo "<h1>Der Gewinnrechner</h1>";
echo "<h2>Sie ermitteln Ihren Gewinn mit folgenden Daten:</h2>";

echo "<table>";
echo "<tr>";
echo "<td>Stückzahl</td>";
echo "<td>$stuck</td>";
echo "</tr>";

echo "<tr>";
echo "<td>Verkaufspreis</td>";
echo "<td>$preis</td>";
echo "</tr>";

echo "<tr>";
echo "<td>Fixkosten</td>";
echo "<td>$fix</td>";
echo "</tr>";

echo "<tr>";
echo "<td>variable Stückkosten</td>";
echo "<td>$variable</td>";
echo "</tr>";

echo "</table>";

echo "<h2>Hier sehen Sie ihre Gewinnentwicklung</h2>";

echo "<table>";
echo "<th>Stück</th>";
echo "<th>Umsatz</th>";
echo "<th>Kosten</th>";
echo "<th>Gewinn</th>";

$zaehler=1;
while ($zaehler<=$stuck) {+
$umsatz=$preis*$zaehler;
$kosten=$variable*$zaehler+$fix;
$gewinn=$umsatz-$kosten;
echo "<tr>";
echo "<td>$stuck</td>";
echo "<td>$umsatz</td>";
echo "<td>$kosten</td>";
echo "<td>$gewinn</td>";
echo "</tr>";
$zaehler++;
}
echo "</table>";
?>

</div>
</body>
</html>