Quelltext:
<!DOCTYPE html>
<html>
<head>
<title>Hotelkosten</title>
</head>
<body>
<?php
//Übergabe der Formularwerte
$anzPerson = 3;
$anzTage = 3;
$preis = 70;
//Berechnung
$bruttopreis = $anzPerson * $anzTage * $preis;
//Ausgabe mit echo
echo "<hr>Lösung:<br />
Der Preis für $anzTage Übernachtungen und $anzPerson
Personen beträgt $bruttopreis Euro.";
//Ausgabe des Quelltextes
echo "<hr><p>Quelltext:</p>";
echo highlight_file("index.php");
?>
</body>
</html>
1