mercoledì 8 giugno 2011

GESTIONE ANAGRAFE

PARTE 1
<html>
<head>
<title>scrittura dati anagrafici</title>
</head>
<body>
<center>
<h2>Gestione dati anagrafici</h2>
<table border="0">
<form action="scrivi_2.php" method="POST">
<tr>
<td>Cognome e nome</td>
<td>Indirizzo</td>
</tr>
<tr>
<td><input name="cognom" maxlength="30" size="30"></td>
<td><input name="indiri" maxlength="50" size="50"></td>
</tr>
<tr>
<td>Professione</td>
<td>Data di nascita</td>
</tr>
<tr>
<td><input name="profes" maxlength="30" size="30"></td>
<td><input name="datnas" maxlength="10" size="10"></td>
</tr>
<tr>
<td>Localit&agrave;</td>
<td>Posta elettronica</td>
</tr>
<tr>
<td><input name="locali" maxlength="30" size="30"></td>
<td><input name="email" maxlength="50" size="50"></td>
</tr>
<tr>
<td><center><input type="submit" value="Invia"></center></td>
<td><center><input type="reset" value="Cancella"></center></td>
</tr>
</form>
</table>
</body>

PARTE 2
<html>
<head>
<title>scrittura dati anagrafici</title>
</head>
<body>
<?php
//inizializzazione delle variabili
$cognom=$_POST['cognom'];
$indiri=$_POST['indiri'];
$profes=$_POST['profes'];
$datnas=$_POST['datnas'];
$locali=$_POST['locali'];
$email=$_POST['email'];

//apertura del file anagrafe2.txt in aapend
$fp=fopen("anagrafe2.txt","a");
//verifica che il file esita
if ($fp) {

//blocco del file angrafe2.txt (fp) per la scrittura dei file
flock($fp,2);
$nl=chr(13) . chr(10);
fputs ($fp,"$cognom|$indiri|$profes|$datnas|$locali|$email|$nl");

//sbocco del file
flock($fp,3);
//chiusura del file
fclose($fp);
}
?>
torna al form <a href="scrivi_1.php">per l'emissione dei dati</a>
</body>
</html>

Nessun commento:

Posta un commento