ANAGRAFE
Parte html
<html><head>
<title>Anagrafe</title>
</head>
<body>
<center><h2>Compilazione dati anagrafe</h2></center>
<form action=anagrafe.php method=POST>
Codice cliente:<input type="text" name="codcli" size=50 maxlength=5> <p>
Ragione sociale: <input type="text" name="ragsoc" size=50 maxlength=50><p>
Indirizzo: <input type="text" name=ind size=50 maxlength=30><p>
C.A.P. <input type="text" name=cap size=20 maxlength=5><p>
Localita <input type="text" name=loc size=20 maxlength=30><p>
Settore merceologico <input type="text" name=set size=20 maxlength=20><p>
Partita IVA <input type="text" name=par size=20 maxlength=11><p>
Codice fiscale <input type="text" name=cod size=20 maxlength=16><p>
<input type=reset value=cancella>
<input type=submit value=invia>
</form>
</body>
</html>
Parte php
<html>
<head>
<title>Anagrafe</title>
</head>
<body>
<?php
echo "<center><h2>Riepilogo dati</center></h2>";
$codcli=$_POST['codcli'];
$ragsoc=$_POST['ragsoc'];
$ind=$_POST['ind'];
$cap=$_POST['cap'];
$loc=$_POST['loc'];
$set=$_POST['set'];
$par=$_POST['par'];
$cod=$_POST['cod'];
echo "Il vostro codice clienti è $codcli <br>";
echo "e la vostra ragione sociale è $ragsoc <br>";
echo "abitante in via $ind, $cap,$loc. <p>";
echo "Il vostro settore merceologico è $set <br>";
echo "la vostra partita iva è $par <br>";
echo "e il vostro codice fiscale è $cod";
?>
</body>
</html>