Pagine

mercoledì 8 giugno 2011

SCRITTURA DI UN FILE DI TESTO

scrivi1.php

<html>
<head>
<title>Scrittura dati anagrafici</title>
</head>
<body>
<center>
<h2>Gestione dati anagrafici</h2>
<table border="0">
<form action="scrivi2.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></tr><tr></tr><tr></tr>
<tr>
<td><center><input type="submit" value="Invia"></center></td>
<td><center><input type="reset" value="Cancella"></center></td>
</tr>
</form>
</table>
</center>
</body>
</html>

scrivi2.php
<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 append
$fp=fopen("anagrafe2.txt","a");

//Controllo che il file esista
if($fp) {
/*Blocco del file anagrafe2.txt ($fp)
per la scrittura dei dati.*/
flock($fp,2);
$nl=chr(13) . chr(10);
fputs ($fp, "$cognom|$indiri|$profes|$datnas|$locali|$email|$nl");
/*Sblocco del file anagrafe2.txt ($fp)
bloccato per la scrittutra dei data.*/
flock($fp,3);
//Chiusura del file anagrafe2.txt
fclose($fp);
}
?>
Torna al form <a href="scrivi1.php"> per l'immissione dei dati.
</body>
</html>


Nessun commento:

Posta un commento