Dati Anagrafe
Parte in HTML
<html>
<head>
<title>Compiti Natale Anagrafe</title>
</head>
<body bgcolor="FFFF66">
<FONT color="blue"><center><h2><u>Anagrafe</u></h2></center></FONT>
<form action="Anagrafe.php" method="POST">
Codice Cliente<input name="Codcli"><br>
Ragione Fiscale<input name="Ragfis"><br>
Indirizzo<input name="Indiri"><br>
C.A.P.<input name="Cap"><br>
Località<input name="Locali"><br>
Settore Merceologico<input name="Setmer"><br>
Partita IVA<input name="Pariv"><br>
Codice Fiscale<input name="Codfis"><br>
<input type="submit" name="Invia">
<input type="reset" name=Cancella">
</body>
</html>
Parte in Php
<html>
<head>
<title>Compiti Natale Anagrafe</title>
</head>
<body bgcolor="FFFF66">
<?
//Inizializzazione delle variabili
$Codcli=$_POST["Codcli"];
$Ragfis=$_POST["Ragfis"];
$Indiri=$_POST["Indiri"];
$Cap=$_POST["Cap"];
$Locali=$_POST["Locali"];
$Setmer=$_POST["Setmer"];
$Pariv=$_POST["Pariv"];
$Codfis=$_POST["Codfis"];
echo"I dati che avete inserito sono:<p>";
echo"Carissimo Cliente il tuo codice è $Codcli,";
echo"la Vostra ragione è $Ragfis,";
echo "l'indirizzo che avete espresso è $Indiri, con il seguente C.A.P $cap";
echo"il settore merceologico di cui volete essere al corrente è $Setmer";
echo"la Vostra partita IVA di cui possiamo tenere conto è $Pariv";
echo"e infine il Vostro codice fiscale è il seguente: $Codfis";
?>
</body>
</html>
Nessun commento:
Posta un commento