<!DOCTYPE html>
<html lang="de">
<head>
   <meta charset="utf-8">
   <title>Auswertung</title>
</head>
<body>
<?php
   $vorname = htmlentities($_POST["vorname"]);
   $nachname = htmlentities($_POST["nachname"]);
   $strasse = htmlentities($_POST["strasse"]);
   $plz = htmlentities($_POST["plz"]);
   $ort = htmlentities($_POST["ort"]);

   echo "Ihre Adresse lautet:<br>";
   echo "$vorname $nachname<br>";
   echo "$strasse<br>";
   echo "$plz $ort";
?>
</body>
</html>