<!doctype html>
 
 
<html lang="fi">
 
<head>
  <meta charset="utf-8">
  <title>Lomakkeen vastaukset</title>
  <meta name="description" content="Panun kotisivut">
  <meta name="author" content="Panu Ojala">
</head>
 
 
<body>
 
<h1>Lomakkeen tulokset</h1>
    
 
<h2>Raakamuodossa</h2>
<?php
var_dump
($_POST);
?>
 
<h2>Valmiissa muodossa</h2>
 
<p>
<strong>Nimi:</strong>
<?php
print $_POST["nimi"];
?>
</p>
 
<p>
<strong>Puhelinnumero:</strong>
<?php
print $_POST["puhelin"];
?>
</p>
 
<p>
<strong>WWW-osoite:</strong>
<?php
print $_POST["www"];
?>
</p>
 
<p>
<strong>Siviilisääty:</strong>
<?php
print $_POST["saaty"];
?>
</p>
 
<p>
<strong>Viesti:</strong>
<?php
print $_POST["palaute"];
?>
</p>
 
</body>
 
</html>